From 1c100c4cf51f86faeeba6daacbea8040a482db9c Mon Sep 17 00:00:00 2001 From: Blaise Tine Date: Sun, 22 Oct 2023 23:31:58 -0700 Subject: [PATCH] minor update --- hw/rtl/VX_gpu_pkg.sv | 2 +- hw/rtl/core/VX_trace.vh | 6 +++++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/hw/rtl/VX_gpu_pkg.sv b/hw/rtl/VX_gpu_pkg.sv index a1b61fc7..7325136f 100644 --- a/hw/rtl/VX_gpu_pkg.sv +++ b/hw/rtl/VX_gpu_pkg.sv @@ -191,7 +191,7 @@ package VX_gpu_pkg; wid_to_isw = 0; end endfunction - `IGNORE_UNUSED_END +`IGNORE_UNUSED_END function logic [`NW_WIDTH-1:0] wis_to_wid( input logic [ISSUE_WIS_W-1:0] wis, diff --git a/hw/rtl/core/VX_trace.vh b/hw/rtl/core/VX_trace.vh index bf0f8012..2bf2a9fc 100644 --- a/hw/rtl/core/VX_trace.vh +++ b/hw/rtl/core/VX_trace.vh @@ -14,6 +14,8 @@ `ifndef VX_TRACE_VH `define VX_TRACE_VH +`ifndef SYNTHESIS + `include "VX_define.vh" task trace_ex_type(input int level, input [`EX_BITS-1:0] ex_type); @@ -373,6 +375,8 @@ task trace_base_dcr(input int level, input [`VX_DCR_ADDR_WIDTH-1:0] addr); `VX_DCR_BASE_MPM_CLASS: `TRACE(level, ("MPM_CLASS")); default: `TRACE(level, ("?")); endcase -endtask +endtask + +`endif `endif // VX_TRACE_VH