yosys/tests/sim/sdffce.v

9 lines
141 B
Verilog
Raw Normal View History

2022-02-15 02:35:53 -06:00
module sdffce( input d, clk, rst, en, output reg q );
always @( posedge clk)
if(en)
if (rst)
q <= 0;
else
q <= d;
endmodule