Page 1 of 1

What is common name for the circuit implemented by the following verilog code? module something (a,b,c,d,e); input b, c,

Posted: Fri Apr 29, 2022 9:00 am
by answerhappygod
What Is Common Name For The Circuit Implemented By The Following Verilog Code Module Something A B C D E Input B C 1
What Is Common Name For The Circuit Implemented By The Following Verilog Code Module Something A B C D E Input B C 1 (60.37 KiB) Viewed 25 times
What is common name for the circuit implemented by the following verilog code? module something (a,b,c,d,e); input b, c, d, e; output (7:0) a; reg [":0) a; always @ (posedge b or posedge c) begin if (c) begin a <= 8'do ; end else if (d) begin a <= a + 1; end else if (e) begin a <= a - 1; end else begin a <= a; end end endmodule (a) gray code counter (b) BCD counter (c) up/down counter (d) one hot counter