20. What are the common name for the circuit given by the following verilog code? module something input a, input b, inp
-
answerhappygod
- Site Admin
- Posts: 899604
- Joined: Mon Aug 02, 2021 8:13 am
20. What are the common name for the circuit given by the following verilog code? module something input a, input b, inp
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
Join a community of subject matter experts. Register for FREE to view solutions, replies, and use search function. Request answer by replying!