16. What are the common name for the circuit given by the following verilog code? module something ( input a, input b, i
Posted: Fri Apr 29, 2022 9:10 am
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