Skip to content

Commit

Permalink
[bitmanip] Fix: Oversight in Tracer ZBT DV fail
Browse files Browse the repository at this point in the history
Failing to read rd in tracer for fsri caused bitmanip DV test to fail.

Signed-off-by: ganoam <[email protected]>
  • Loading branch information
ganoam authored and vogelpi committed Apr 24, 2020
1 parent 7315514 commit edd8e1d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rtl/ibex_tracer.sv
Original file line number Diff line number Diff line change
Expand Up @@ -441,7 +441,7 @@ module ibex_tracer (
// fsri
logic [5:0] shamt;
shamt = {rvfi_insn[25:20]};
data_accessed = RS1 | RS3;
data_accessed = RS1 | RS3 | RD;
decoded_str = $sformatf("%s\tx%0d,x%0d,x%0d,0x%0x", mnemonic, rvfi_rd_addr, rvfi_rs1_addr,
rvfi_rs3_addr, shamt);
endfunction
Expand Down

0 comments on commit edd8e1d

Please sign in to comment.