minor update

This commit is contained in:
Blaise Tine 2021-08-16 04:43:59 -07:00
parent b00dea6d05
commit 7aea9357f3

View file

@ -45,7 +45,8 @@ module VX_icache_stage #(
.dout({rsp_PC, rsp_tmask})
);
`RUNTIME_ASSERT((!ifetch_req_if.valid || ifetch_req_if.PC >= `STARTUP_ADDR), ("invalid PC=%0h", ifetch_req_if.PC))
`RUNTIME_ASSERT((!ifetch_req_if.valid || ifetch_req_if.PC >= `STARTUP_ADDR),
("invalid PC=%0h, wid=%0d, tmask=%b", ifetch_req_if.PC, ifetch_req_if.wid, ifetch_req_if.tmask))
// Icache Request
assign icache_req_if.valid = ifetch_req_if.valid;