From 86021b3616c24efe38d8869b45d201bf24fe9a07 Mon Sep 17 00:00:00 2001 From: Joshua Yun Date: Tue, 25 Mar 2025 00:29:30 -0500 Subject: feat: initial completion of decode stage, fix: removed hardcoded path for riscv assembly files in TB --- core/tb/core_tb_imem.sv | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'core/tb') diff --git a/core/tb/core_tb_imem.sv b/core/tb/core_tb_imem.sv index 6d3fa92..740be8a 100644 --- a/core/tb/core_tb_imem.sv +++ b/core/tb/core_tb_imem.sv @@ -21,7 +21,7 @@ logic [7:0] imem [0:(1<<(ADDR_WIDTH))-1]; // Fill up memory using the $fopen and $fread syscalls initial begin - assembly_file = $fopen("/home/joshua/Personal/riscv-linux/core/tb/riscv_arithmetic_basic_test_0.bin", "rb"); + assembly_file = $fopen("../../../core/testcode/riscv_arithmetic_basic_test_0.bin", "rb"); status_file = $fread( imem, assembly_file ); if (status_file == 0) begin $ferror( assembly_file, error_message_file ); -- cgit v1.2.3