Skip to content

Commit 033e7ef

Browse files
committed
Fix x sensitive assertion in Vortex
1 parent f69ea64 commit 033e7ef

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

designs/Vortex/src/VX_mem_scheduler.sv

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ module VX_mem_scheduler #(
9797
`STATIC_ASSERT (`IS_DIVISBLE(CORE_REQS * WORD_SIZE, LINE_SIZE), ("invalid parameter"))
9898
`STATIC_ASSERT ((TAG_WIDTH >= UUID_WIDTH), ("invalid parameter"))
9999
`STATIC_ASSERT ((0 == RSP_PARTIAL) || (1 == RSP_PARTIAL), ("invalid parameter"))
100-
`RUNTIME_ASSERT((~core_req_valid || core_req_mask != 0), ("invalid request mask"));
100+
`RUNTIME_ASSERT($root.tb.reset || (~core_req_valid || core_req_mask != 0), ("invalid request mask"));
101101

102102
wire ibuf_push;
103103
wire ibuf_pop;

0 commit comments

Comments
 (0)