Skip to content
Snippets Groups Projects
Commit 4b52aadc authored by Grzegorz Daniluk's avatar Grzegorz Daniluk
Browse files

sim/if_wb_master: fix wb classic broken in commit cbc1c428: [sim] rewrite of...

sim/if_wb_master: fix wb classic broken in commit cbc1c428: [sim] rewrite of the WB master interface
parent 25429297
Branches
Tags
1 merge request!20Wb axi4lite bridge fix
......@@ -152,7 +152,7 @@ interface IWishboneMaster
dat_o <= gen_data(c.data[i]);
@(posedge clk_i);
while (ack != 1'b1 && err != 1'b1 && rty == 1'b1) @(posedge clk_i);
while (ack != 1'b1 && err != 1'b1 && rty == 1'b0) @(posedge clk_i);
if (err || rty) begin
c.result = (err ? R_ERROR: R_RETRY);
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment