1
0
mirror of synced 2026-01-17 00:52:28 +00:00
Miodrag Milanovic 271ac28b41 Added test cases
2022-02-16 13:27:59 +01:00

9 lines
141 B
Verilog

module sdffce( input d, clk, rst, en, output reg q );
always @( posedge clk)
if(en)
if (rst)
q <= 0;
else
q <= d;
endmodule