mirror of https://github.com/YosysHQ/yosys.git
12 lines
179 B
Coq
12 lines
179 B
Coq
|
module NegEdgeClock(q, d, clk, reset);
|
||
|
input d, clk, reset;
|
||
|
output reg q;
|
||
|
|
||
|
always @(negedge clk or negedge reset)
|
||
|
if(!reset)
|
||
|
q <= 1'b0;
|
||
|
else
|
||
|
q <= d;
|
||
|
|
||
|
endmodule
|