aboutsummaryrefslogtreecommitdiffstats
path: root/tests/sim/adffe.v
blob: 55c7d8d4e141c0756c9b9b22dd2296ad06889ef6 (plain)
1
2
3
4
5
6
7
8
module adffe( input d, clk, rst, en, output reg q );
	always @( posedge clk, posedge rst )
		if (rst)
			q <= 0;
		else
			if (en)
				q <= d;
endmodule