Introduction to RTL | Hands on Verilog Programming | AND Gate Verilog Code | Lecture-1

แชร์
ฝัง
  • เผยแพร่เมื่อ 26 ต.ค. 2024

ความคิดเห็น • 9

  • @JAI_BALAYYA_
    @JAI_BALAYYA_ ปีที่แล้ว +2

    ❤I love this concept

  • @TechbuggyOfficial
    @TechbuggyOfficial  ปีที่แล้ว

    AND Gate Functionality Video:
    th-cam.com/video/gAM9gFSV8Rg/w-d-xo.html

  • @jyothi648
    @jyothi648 ปีที่แล้ว +2

    Gud luck🤝..keep going..❣

  • @lokesh6908
    @lokesh6908 ปีที่แล้ว +2

    Very useful content..🤩🙌..keep doing like this..🙌..

  • @MRG09
    @MRG09 ปีที่แล้ว +1

    Module and_gate(a,b,y);
    input a,b;
    output y ;
    Module and_gate(input a, input b, output y);
    What is the difference which one is better to use

    • @TechbuggyOfficial
      @TechbuggyOfficial  ปีที่แล้ว

      In total we have Three ways of declaring port lists:
      1. ANSI Style Port List.(it provides clear separation of port list elements)
      Ex: what I taught in video.
      2. Non-ANSI Style Port List.(it is used for smaller designs having less elements)
      Ex: what you posted in the comment section.
      3. Interface based Port List.(it provides reusability for complex interfaces)
      Ex: Here we can define the interface port lists.
      We can use based on our requirement of designing.
      We can declare ports as input, output and inout ports also.
      Thanks👍