VERILOG DESCRIPTION STYLES

Поделиться
HTML-код
  • Опубликовано: 24 июл 2024

Комментарии • 12

  • @vandan5036
    @vandan5036 2 года назад +8

    in NAND LATCH it is active low and s is at top and in its front there is q and in front of R there should be q_bar

  • @UTube4075
    @UTube4075 2 года назад

    Best book for Verilog????

  • @mrkumar7181
    @mrkumar7181 4 года назад +1

    Why reg is not used ?

  • @shirsenduacharyya9443
    @shirsenduacharyya9443 2 года назад +3

    the decoder code is showing error and non synthesizable- ERROR - sel is not a constant
    module Simple_decoder_1_to_4(in,sel,out);
    input in;
    input [0:1]sel;
    output [0:3] out;
    assign out[sel]=in; // when LHS is variable we get a decoder
    endmodule

    • @arghya.7098
      @arghya.7098 18 дней назад

      you used 3 variables but declared 2 variables. that might cause an error

  • @nenavathharisingh3231
    @nenavathharisingh3231 4 месяца назад +2

    Isn't that decoder a dmux ??

    • @arghya.7098
      @arghya.7098 18 дней назад +1

      i guess he mistakenly told demux and decoder as same thing

  • @arghyaray9011
    @arghyaray9011 Год назад

    Can anyone help on the following !!!
    The decoder code is showing error and non synthesizable- ERROR - sel is not a constant
    module Simple_decoder_1_to_4(in,sel,out);
    input in;
    input [0:1]sel;
    output [0:3] out;
    assign out[sel]=in; // when LHS is variable we get a decoder
    endmodule

    • @abhishekagrawal542
      @abhishekagrawal542 11 месяцев назад +4

      but decoder ckt will not having selection line

    • @arghya.7098
      @arghya.7098 18 дней назад

      you used 3 variables but declared 2 variables. that might cause an error

  • @mrpossible5696
    @mrpossible5696 5 лет назад

    Y