mirror of https://github.com/YosysHQ/yosys.git
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);
|
||||
initial q = 1'b0;
|
||||
always @(negedge clk or negedge r)
|
||||
if (r) q <= 1'b0;
|
||||
if (!r) q <= 1'b0;
|
||||
else q <= d;
|
||||
endmodule
|
||||
|
|
Loading…
Reference in New Issue