yosys/tests/sim/aldff.v

8 lines
177 B
Verilog
Raw Normal View History

2022-02-15 02:35:53 -06:00
module aldff( input [0:3] d, input [0:3] ad, input clk, aload, output reg [0:3] q );
always @( posedge clk, posedge aload)
if (aload)
q <= ad;
else
q <= d;
endmodule