mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-07 09:55:20 +00:00
Another sloppy mistake!
This commit is contained in:
parent
fe36275234
commit
6841e3b1c2
|
@ -13,6 +13,6 @@ endmodule
|
||||||
module abc9_test032(input clk, d, r, output reg q);
|
module abc9_test032(input clk, d, r, output reg q);
|
||||||
initial q = 1'b0;
|
initial q = 1'b0;
|
||||||
always @(negedge clk or negedge r)
|
always @(negedge clk or negedge r)
|
||||||
if (r) q <= 1'b0;
|
if (!r) q <= 1'b0;
|
||||||
else q <= d;
|
else q <= d;
|
||||||
endmodule
|
endmodule
|
||||||
|
|
Loading…
Reference in a new issue