Skip to content

Commit

Permalink
rtl: fix DM testbench, did not expect enabled C extension
Browse files Browse the repository at this point in the history
  • Loading branch information
NikLeberg committed Jan 7, 2024
1 parent ab5475f commit a265c5d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions vhdl/neorv32_debug/tb/neorv32_debug_dm_smp_tb.vhdl
Original file line number Diff line number Diff line change
Expand Up @@ -394,9 +394,9 @@ BEGIN
REPORT "Abstract read of s0 with 32 bits did fail."
SEVERITY failure;
dmi_read(addr_data0_c); -- read result (MISA csr) from data0
ASSERT dmi_rsp.data = x"40801101"
ASSERT dmi_rsp.data = x"40801105"
REPORT "MISA of hart " & INTEGER'image(i) & " was expected to be " &
"0x40801101 (RV32AIMX) and not " & to_hstring(dmi_rsp.data) & "."
"0x40801105 (RV32AIMCX) and not 0x" & to_hstring(dmi_rsp.data) & "."
SEVERITY failure;
-- request hart i to resume
dmi_write(addr_dmcontrol_c, "010000" & STD_ULOGIC_VECTOR(to_unsigned(i, 10)) & x"0001");
Expand Down

0 comments on commit a265c5d

Please sign in to comment.