Behavioral Modeling | #13 | Verilog in English | VLSI Point

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

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

  • @ganeshbagnal6524
    @ganeshbagnal6524 10 หลายเดือนก่อน +2

    1) Is Parallel Block and Fork-Join are same?
    2) In between Fork-Join if delay time is not mentioned, is all the statements completes at time 0?

  • @Harshitha-mm7ki
    @Harshitha-mm7ki 2 ปีที่แล้ว +3

    Simulation result is wrong for example module stimulus at 4:14 since 25 units time delay is assigned for b and y but 30 and 35 are came out of nowhere in simulation result!!

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

      This is because within an initial block, the delays are compounded. So in the first one, "a = 1" executes at time 5, then "b = 0" executes 25 units of time after "a = 1" executes, 5 + 25 = 30, therefore "b = 0" will execute at time 30. The reasoning is the same for 35 in the second initial block.

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

    Mam thank you so much. Nice explanation 👌.

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

      Thanks Giridesh!

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

    From 20:00 to last screen is blank, ultimately u vl given explanation

  • @harshithareddybijjam7873
    @harshithareddybijjam7873 2 ปีที่แล้ว

    When we are declaring Q in output declaration why we are defining output as reg again, why not inputs as net here?

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

      In always and initial blocks Left hand side variable should be reg and right side variables may be reg or net

    • @SOORYAKEERTHIPS
      @SOORYAKEERTHIPS 7 หลายเดือนก่อน

      @@durgaprasadmaddala3727 sir what is' nested ' meaning here

  • @nishantrajput2936
    @nishantrajput2936 2 ปีที่แล้ว

    Telegram link is expired....please upload again

  • @007_alkeshsingh3
    @007_alkeshsingh3 3 ปีที่แล้ว +2

    how to write testbench for it

    • @vlsipoint
      @vlsipoint  3 ปีที่แล้ว +8

      I'm going to upload a dedicated video on test bench writing, there you will get all the concepts.
      Stay connected and keep supporting ✌✌

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

      @@vlsipoint thanks

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

    why we are putting( Q+1)%16 in 4 bit binary counter

    • @gantakushalkumar5098
      @gantakushalkumar5098 6 หลายเดือนก่อน

      Q=q+1 is to count it from 0 to 15 as it is a 4 bit counter it has to stops at 15 and count from 0 so we are taking modulus of 16.

  • @Amma4466
    @Amma4466 25 วันที่ผ่านมา

    Mam in 10:5 you said the time u it's is 10 but the time units is 5 only

  • @Abid-qp2jm
    @Abid-qp2jm ปีที่แล้ว

    what is the difference between initial and always?

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

    In intra assignment delay you said 10
    But it is 5

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

    Hello Ma'am!!
    Please can you make a series on VHDL Language too!!

  • @lumeshy9010
    @lumeshy9010 2 ปีที่แล้ว

    unable to join telegram group mam and please upload some videos for test bench and some codes for some tough digital systems

  • @ganeshbagnal6524
    @ganeshbagnal6524 10 หลายเดือนก่อน +1

    Non-blocking statement not clearly explained. More examples would have been better.