Skip to content

Commit

Permalink
Merge pull request #4 from CTSRD-CHERI/aj443-fix-deburster-warning
Browse files Browse the repository at this point in the history
Fix an action shadowing warning in the deburster
  • Loading branch information
gameboo authored Nov 30, 2020
2 parents aced14d + 4625755 commit a112597
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions AXI/AXI4_Utils.bsv
Original file line number Diff line number Diff line change
Expand Up @@ -336,13 +336,13 @@ module mkSerialiser #(AXI4_Master#(a, b, c, d, e, f, g, h) m)

(* mutually_exclusive = "takeR, takeB" *)

rule takeB;
rule takeB (state[1] == WAITING);
let bFlit <- get(slv.b);
m.b.put(bFlit);
state[1] <= IDLE;
endrule

rule takeR;
rule takeR (state[1] == WAITING);
let rFlit <- get(slv.r);
m.r.put(rFlit);
if (rFlit.rlast) state[1] <= IDLE;
Expand Down

0 comments on commit a112597

Please sign in to comment.