From c77a47b403db0fffcf5cff665d37ee575c45953f Mon Sep 17 00:00:00 2001 From: Rose Thompson Date: Tue, 21 Nov 2023 13:47:58 -0600 Subject: [PATCH] Output the instruction trace to the logs directory. --- testbench/common/wallyTracer.sv | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testbench/common/wallyTracer.sv b/testbench/common/wallyTracer.sv index 4433deb8e..c2fc38f17 100644 --- a/testbench/common/wallyTracer.sv +++ b/testbench/common/wallyTracer.sv @@ -502,7 +502,7 @@ module wallyTracer import cvw::*; #(parameter cvw_t P) (rvviTrace rvvi); if(`STD_LOG) begin instrNameDecTB NameDecoder(rvvi.insn[0][0], instrWName); initial begin - LogFile = "InstrTrace.log"; + LogFile = "logs/InstrTrace.log"; file = $fopen(LogFile, "w"); end end