16. What are the common name for the circuit given by the following verilog code? module something ( input a, input b, i
-
answerhappygod
- Site Admin
- Posts: 899604
- Joined: Mon Aug 02, 2021 8:13 am
16. What are the common name for the circuit given by the following verilog code? module something ( input a, input b, i
16. 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; I always @ (posedge a) if (c) e <= {e [2:0), b}; assign d = e; endmodule (a) one hot counter (b) gray code counter (c) serial to parallel converter (d) linear feedback shift register 17. negative clock skew: (a) increases TPDMAX (b) is bad for TPDMIN (c) decreases TPDMIN (d) is good for TPDMAX
Join a community of subject matter experts. Register for FREE to view solutions, replies, and use search function. Request answer by replying!