aboutsummaryrefslogtreecommitdiffstats
path: root/tests/sim/sdffce.v
blob: 7d27d574180f9838d0202aaf598898590a98e889 (plain)
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