Page 1 of 1

20. What are the common name for the circuit given by the following verilog code? module something input a, input b, inp

Posted: Fri Apr 29, 2022 9:01 am
by answerhappygod
20 What Are The Common Name For The Circuit Given By The Following Verilog Code Module Something Input A Input B Inp 1
20 What Are The Common Name For The Circuit Given By The Following Verilog Code Module Something Input A Input B Inp 1 (32.16 KiB) Viewed 40 times
20. What are the common name for the circuit given by the following verilog code? module something input a, input b, input c, output (3:0) d ); reg (3:0) e; always @ (posedge a) if (c) e <= {e [2:0), b); assign d = e; endmodule (a) serial to parallel converter (b) linear feedback shift register (c) one hot counter (d) gray code counter 21. What is common name for the circuit implemented by the following verilog code? module something ( I input [3:0] a, output b ); assign b = (a > 4'51001) ? I'bi : 1'50; endmodule (a) multiplexer (b) priority encoder (c) comparator (d) adder