1 2 3 4 5 6 7 8
module sdffce( input d, clk, rst, en, output reg q ); always @( posedge clk) if(en) if (rst) q <= 0; else q <= d; endmodule