From 7aea9357f3d81478ff1c1d0e150c31360b6112ea Mon Sep 17 00:00:00 2001 From: Blaise Tine Date: Mon, 16 Aug 2021 04:43:59 -0700 Subject: [PATCH] minor update --- hw/rtl/VX_icache_stage.v | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/hw/rtl/VX_icache_stage.v b/hw/rtl/VX_icache_stage.v index b27b2c86..1e198b11 100644 --- a/hw/rtl/VX_icache_stage.v +++ b/hw/rtl/VX_icache_stage.v @@ -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;