[benchmark] fixed a bug which causes yosys failed

This commit is contained in:
tangxifan 2022-09-09 17:04:59 -07:00
parent 91fe27ff66
commit 314f5395b4
1 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@ input wire a;
input wire b;
output reg out;
always @(rst or posedge clk) begin
always @(posedge rst or posedge clk) begin
if (rst) begin
out <= 0;
end else begin