[benchmark] fixed a bug which causes yosys failed
This commit is contained in:
parent
91fe27ff66
commit
314f5395b4
|
@ -12,7 +12,7 @@ input wire a;
|
||||||
input wire b;
|
input wire b;
|
||||||
output reg out;
|
output reg out;
|
||||||
|
|
||||||
always @(rst or posedge clk) begin
|
always @(posedge rst or posedge clk) begin
|
||||||
if (rst) begin
|
if (rst) begin
|
||||||
out <= 0;
|
out <= 0;
|
||||||
end else begin
|
end else begin
|
||||||
|
|
Loading…
Reference in New Issue