From 2a7a4df342fd2602097657674ea1fde62a2a7922 Mon Sep 17 00:00:00 2001 From: Blaise Tine Date: Tue, 30 Nov 2021 07:17:58 -0500 Subject: [PATCH] simx directory name fix --- driver/simx/Makefile | 4 +-- miscs/rvvector/basic/Makefile | 2 +- sim/Makefile | 4 +-- sim/{simX => simx}/Makefile | 2 +- sim/{simX => simx}/archdef.h | 0 sim/{simX => simx}/args.cpp | 0 sim/{simX => simx}/args.h | 0 sim/{simX => simx}/cache.cpp | 0 sim/{simX => simx}/cache.h | 0 sim/{simX => simx}/constants.h | 0 sim/{simX => simx}/core.cpp | 0 sim/{simX => simx}/core.h | 0 sim/{simX => simx}/debug.h | 0 sim/{simX => simx}/decode.cpp | 0 sim/{simX => simx}/decode.h | 0 sim/{simX => simx}/execute.cpp | 0 sim/{simX => simx}/exeunit.cpp | 0 sim/{simX => simx}/exeunit.h | 0 sim/{simX => simx}/ibuffer.h | 0 sim/{simX => simx}/instr.h | 0 sim/{simX => simx}/main.cpp | 0 sim/{simX => simx}/memsim.cpp | 0 sim/{simX => simx}/memsim.h | 0 sim/{simX => simx}/pipeline.h | 0 sim/{simX => simx}/processor.cpp | 0 sim/{simX => simx}/processor.h | 0 sim/{simX => simx}/scoreboard.h | 0 sim/{simX => simx}/sharedmem.h | 0 sim/{simX => simx}/tex_unit.cpp | 0 sim/{simX => simx}/tex_unit.h | 0 sim/{simX => simx}/types.h | 0 sim/{simX => simx}/warp.cpp | 0 sim/{simX => simx}/warp.h | 0 sim/vlsim/vortex_afu.h | 49 ------------------------------ tests/opencl/BlackScholes/Makefile | 2 +- tests/opencl/DotProduct/Makefile | 2 +- tests/opencl/VectorHypot/Makefile | 2 +- tests/opencl/cutcp/Makefile | 2 +- tests/opencl/lbm/Makefile | 2 +- tests/opencl/mri-q/Makefile | 2 +- tests/opencl/reduce0/Makefile | 2 +- tests/opencl/sad/Makefile | 2 +- tests/opencl/spmv/Makefile | 2 +- tests/opencl/stencil/Makefile | 2 +- tests/riscv/isa/Makefile | 2 +- tests/runtime/fibonacci/Makefile | 2 +- tests/runtime/hello/Makefile | 2 +- tests/runtime/simple/Makefile | 2 +- 48 files changed, 20 insertions(+), 69 deletions(-) rename sim/{simX => simx}/Makefile (98%) rename sim/{simX => simx}/archdef.h (100%) rename sim/{simX => simx}/args.cpp (100%) rename sim/{simX => simx}/args.h (100%) rename sim/{simX => simx}/cache.cpp (100%) rename sim/{simX => simx}/cache.h (100%) rename sim/{simX => simx}/constants.h (100%) rename sim/{simX => simx}/core.cpp (100%) rename sim/{simX => simx}/core.h (100%) rename sim/{simX => simx}/debug.h (100%) rename sim/{simX => simx}/decode.cpp (100%) rename sim/{simX => simx}/decode.h (100%) rename sim/{simX => simx}/execute.cpp (100%) rename sim/{simX => simx}/exeunit.cpp (100%) rename sim/{simX => simx}/exeunit.h (100%) rename sim/{simX => simx}/ibuffer.h (100%) rename sim/{simX => simx}/instr.h (100%) rename sim/{simX => simx}/main.cpp (100%) rename sim/{simX => simx}/memsim.cpp (100%) rename sim/{simX => simx}/memsim.h (100%) rename sim/{simX => simx}/pipeline.h (100%) rename sim/{simX => simx}/processor.cpp (100%) rename sim/{simX => simx}/processor.h (100%) rename sim/{simX => simx}/scoreboard.h (100%) rename sim/{simX => simx}/sharedmem.h (100%) rename sim/{simX => simx}/tex_unit.cpp (100%) rename sim/{simX => simx}/tex_unit.h (100%) rename sim/{simX => simx}/types.h (100%) rename sim/{simX => simx}/warp.cpp (100%) rename sim/{simX => simx}/warp.h (100%) delete mode 100644 sim/vlsim/vortex_afu.h diff --git a/driver/simx/Makefile b/driver/simx/Makefile index dea65c35..14114f2a 100644 --- a/driver/simx/Makefile +++ b/driver/simx/Makefile @@ -1,4 +1,4 @@ -SIMX_DIR = ../../sim/simX +SIMX_DIR = ../../sim/simx CXXFLAGS += -std=c++11 -O2 -Wall -Wextra -Wfatal-errors #CXXFLAGS += -std=c++11 -g -O0 -Wall -Wextra -Wfatal-errors @@ -9,7 +9,7 @@ CXXFLAGS += $(CONFIGS) CXXFLAGS += -DDUMP_PERF_STATS LDFLAGS += -shared -pthread -LDFLAGS += $(SIMX_DIR)/libsimX.a +LDFLAGS += $(SIMX_DIR)/libsimx.a SRCS = vortex.cpp ../common/vx_utils.cpp diff --git a/miscs/rvvector/basic/Makefile b/miscs/rvvector/basic/Makefile index 5a796fe7..66aece0c 100644 --- a/miscs/rvvector/basic/Makefile +++ b/miscs/rvvector/basic/Makefile @@ -36,6 +36,6 @@ ELF: $(COMP) $(CC_FLAGS) $(VX_STR) $(VX_VEC) $(VX_FIO) $(NEWLIB) $(VX_INT) $(VX_IO) $(VX_API) $(VX_MAIN).c $(LIBS) -Iinclude -o $(VX_MAIN).elf run: - ../../simX/obj_dir/Vcache_simX -E -a rv32i --core vx_vector_main.hex -s -b 1> emulator.debug + ../../simx/obj_dir/Vcache_simX -E -a rv32i --core vx_vector_main.hex -s -b 1> emulator.debug diff --git a/sim/Makefile b/sim/Makefile index e0361709..5c4584f4 100644 --- a/sim/Makefile +++ b/sim/Makefile @@ -1,9 +1,9 @@ all: - $(MAKE) -C simX + $(MAKE) -C simx $(MAKE) -C rtlsim $(MAKE) -C vlsim clean: - $(MAKE) -C simX clean + $(MAKE) -C simx clean $(MAKE) -C rtlsim clean $(MAKE) -C vlsim clean \ No newline at end of file diff --git a/sim/simX/Makefile b/sim/simx/Makefile similarity index 98% rename from sim/simX/Makefile rename to sim/simx/Makefile index b3312bb0..ad4e38c8 100644 --- a/sim/simX/Makefile +++ b/sim/simx/Makefile @@ -28,7 +28,7 @@ else CXXFLAGS += -O2 -DNDEBUG endif -PROJECT = simX +PROJECT = simx all: $(PROJECT) diff --git a/sim/simX/archdef.h b/sim/simx/archdef.h similarity index 100% rename from sim/simX/archdef.h rename to sim/simx/archdef.h diff --git a/sim/simX/args.cpp b/sim/simx/args.cpp similarity index 100% rename from sim/simX/args.cpp rename to sim/simx/args.cpp diff --git a/sim/simX/args.h b/sim/simx/args.h similarity index 100% rename from sim/simX/args.h rename to sim/simx/args.h diff --git a/sim/simX/cache.cpp b/sim/simx/cache.cpp similarity index 100% rename from sim/simX/cache.cpp rename to sim/simx/cache.cpp diff --git a/sim/simX/cache.h b/sim/simx/cache.h similarity index 100% rename from sim/simX/cache.h rename to sim/simx/cache.h diff --git a/sim/simX/constants.h b/sim/simx/constants.h similarity index 100% rename from sim/simX/constants.h rename to sim/simx/constants.h diff --git a/sim/simX/core.cpp b/sim/simx/core.cpp similarity index 100% rename from sim/simX/core.cpp rename to sim/simx/core.cpp diff --git a/sim/simX/core.h b/sim/simx/core.h similarity index 100% rename from sim/simX/core.h rename to sim/simx/core.h diff --git a/sim/simX/debug.h b/sim/simx/debug.h similarity index 100% rename from sim/simX/debug.h rename to sim/simx/debug.h diff --git a/sim/simX/decode.cpp b/sim/simx/decode.cpp similarity index 100% rename from sim/simX/decode.cpp rename to sim/simx/decode.cpp diff --git a/sim/simX/decode.h b/sim/simx/decode.h similarity index 100% rename from sim/simX/decode.h rename to sim/simx/decode.h diff --git a/sim/simX/execute.cpp b/sim/simx/execute.cpp similarity index 100% rename from sim/simX/execute.cpp rename to sim/simx/execute.cpp diff --git a/sim/simX/exeunit.cpp b/sim/simx/exeunit.cpp similarity index 100% rename from sim/simX/exeunit.cpp rename to sim/simx/exeunit.cpp diff --git a/sim/simX/exeunit.h b/sim/simx/exeunit.h similarity index 100% rename from sim/simX/exeunit.h rename to sim/simx/exeunit.h diff --git a/sim/simX/ibuffer.h b/sim/simx/ibuffer.h similarity index 100% rename from sim/simX/ibuffer.h rename to sim/simx/ibuffer.h diff --git a/sim/simX/instr.h b/sim/simx/instr.h similarity index 100% rename from sim/simX/instr.h rename to sim/simx/instr.h diff --git a/sim/simX/main.cpp b/sim/simx/main.cpp similarity index 100% rename from sim/simX/main.cpp rename to sim/simx/main.cpp diff --git a/sim/simX/memsim.cpp b/sim/simx/memsim.cpp similarity index 100% rename from sim/simX/memsim.cpp rename to sim/simx/memsim.cpp diff --git a/sim/simX/memsim.h b/sim/simx/memsim.h similarity index 100% rename from sim/simX/memsim.h rename to sim/simx/memsim.h diff --git a/sim/simX/pipeline.h b/sim/simx/pipeline.h similarity index 100% rename from sim/simX/pipeline.h rename to sim/simx/pipeline.h diff --git a/sim/simX/processor.cpp b/sim/simx/processor.cpp similarity index 100% rename from sim/simX/processor.cpp rename to sim/simx/processor.cpp diff --git a/sim/simX/processor.h b/sim/simx/processor.h similarity index 100% rename from sim/simX/processor.h rename to sim/simx/processor.h diff --git a/sim/simX/scoreboard.h b/sim/simx/scoreboard.h similarity index 100% rename from sim/simX/scoreboard.h rename to sim/simx/scoreboard.h diff --git a/sim/simX/sharedmem.h b/sim/simx/sharedmem.h similarity index 100% rename from sim/simX/sharedmem.h rename to sim/simx/sharedmem.h diff --git a/sim/simX/tex_unit.cpp b/sim/simx/tex_unit.cpp similarity index 100% rename from sim/simX/tex_unit.cpp rename to sim/simx/tex_unit.cpp diff --git a/sim/simX/tex_unit.h b/sim/simx/tex_unit.h similarity index 100% rename from sim/simX/tex_unit.h rename to sim/simx/tex_unit.h diff --git a/sim/simX/types.h b/sim/simx/types.h similarity index 100% rename from sim/simX/types.h rename to sim/simx/types.h diff --git a/sim/simX/warp.cpp b/sim/simx/warp.cpp similarity index 100% rename from sim/simX/warp.cpp rename to sim/simx/warp.cpp diff --git a/sim/simX/warp.h b/sim/simx/warp.h similarity index 100% rename from sim/simX/warp.h rename to sim/simx/warp.h diff --git a/sim/vlsim/vortex_afu.h b/sim/vlsim/vortex_afu.h deleted file mode 100644 index 1a1dee44..00000000 --- a/sim/vlsim/vortex_afu.h +++ /dev/null @@ -1,49 +0,0 @@ -// auto-generated by gen_config.py. DO NOT EDIT -// Generated at 2021-11-25 13:43:13.259966 - -// Translated from VX_config.vh: - -#ifndef __VORTEX_AFU__ -#define __VORTEX_AFU__ - - - -#define PLATFORM_PROVIDES_LOCAL_MEMORY - -#ifndef PLATFORM_PARAM_LOCAL_MEMORY_BANKS -#define PLATFORM_PARAM_LOCAL_MEMORY_BANKS 2 -#endif - -#ifndef PLATFORM_PARAM_LOCAL_MEMORY_ADDR_WIDTH -#define PLATFORM_PARAM_LOCAL_MEMORY_ADDR_WIDTH 26 -#endif - -#ifndef PLATFORM_PARAM_LOCAL_MEMORY_DATA_WIDTH -#define PLATFORM_PARAM_LOCAL_MEMORY_DATA_WIDTH 512 -#endif - -#ifndef PLATFORM_PARAM_LOCAL_MEMORY_BURST_CNT_WIDTH -#define PLATFORM_PARAM_LOCAL_MEMORY_BURST_CNT_WIDTH 4 -#endif - - - -#define AFU_ACCEL_NAME "vortex_afu" -#define AFU_ACCEL_UUID 0x35f9452b_25c2_434c_93d5_6f8c60db361c - -#define AFU_IMAGE_CMD_MEM_READ 1 -#define AFU_IMAGE_CMD_MEM_WRITE 2 -#define AFU_IMAGE_CMD_RUN 3 -#define AFU_IMAGE_MMIO_CMD_TYPE 10 -#define AFU_IMAGE_MMIO_DATA_SIZE 16 -#define AFU_IMAGE_MMIO_IO_ADDR 12 -#define AFU_IMAGE_MMIO_MEM_ADDR 14 -#define AFU_IMAGE_MMIO_SCOPE_READ 20 -#define AFU_IMAGE_MMIO_SCOPE_WRITE 22 -#define AFU_IMAGE_MMIO_DEV_CAPS 24 -#define AFU_IMAGE_MMIO_STATUS 18 - -#define AFU_IMAGE_POWER 0 -#define AFU_TOP_IFC "ccip_std_afu_avalon_mm" - -#endif diff --git a/tests/opencl/BlackScholes/Makefile b/tests/opencl/BlackScholes/Makefile index 54ffe7ab..30091c87 100644 --- a/tests/opencl/BlackScholes/Makefile +++ b/tests/opencl/BlackScholes/Makefile @@ -3,7 +3,7 @@ POCL_CC_PATH ?= $(wildcard ../../../../pocl/drops_riscv_cc) POCL_INC_PATH ?= $(wildcard ../include) POCL_LIB_PATH ?= $(wildcard ../lib) VORTEX_RT_PATH ?= $(wildcard ../../../runtime) -VX_SIMX_PATH ?= $(wildcard ../../../simX/obj_dir) +VX_SIMX_PATH ?= $(wildcard ../../../simx/obj_dir) CC = $(RISCV_TOOLCHAIN_PATH)/bin/riscv32-unknown-elf-gcc CXX = $(RISCV_TOOLCHAIN_PATH)/bin/riscv32-unknown-elf-g++ diff --git a/tests/opencl/DotProduct/Makefile b/tests/opencl/DotProduct/Makefile index 44eaf258..3f3a68f3 100644 --- a/tests/opencl/DotProduct/Makefile +++ b/tests/opencl/DotProduct/Makefile @@ -3,7 +3,7 @@ POCL_CC_PATH ?= $(wildcard ../../../../pocl/drops_riscv_cc) POCL_INC_PATH ?= $(wildcard ../include) POCL_LIB_PATH ?= $(wildcard ../lib) VORTEX_RT_PATH ?= $(wildcard ../../../runtime) -VX_SIMX_PATH ?= $(wildcard ../../../simX/obj_dir) +VX_SIMX_PATH ?= $(wildcard ../../../simx/obj_dir) CC = $(RISCV_TOOLCHAIN_PATH)/bin/riscv32-unknown-elf-gcc CXX = $(RISCV_TOOLCHAIN_PATH)/bin/riscv32-unknown-elf-g++ diff --git a/tests/opencl/VectorHypot/Makefile b/tests/opencl/VectorHypot/Makefile index bd5cf982..e58561ca 100644 --- a/tests/opencl/VectorHypot/Makefile +++ b/tests/opencl/VectorHypot/Makefile @@ -3,7 +3,7 @@ POCL_CC_PATH ?= $(wildcard ../../../../pocl/drops_riscv_cc) POCL_INC_PATH ?= $(wildcard ../include) POCL_LIB_PATH ?= $(wildcard ../lib) VORTEX_RT_PATH ?= $(wildcard ../../../runtime) -VX_SIMX_PATH ?= $(wildcard ../../../simX/obj_dir) +VX_SIMX_PATH ?= $(wildcard ../../../simx/obj_dir) CC = $(RISCV_TOOLCHAIN_PATH)/bin/riscv32-unknown-elf-gcc CXX = $(RISCV_TOOLCHAIN_PATH)/bin/riscv32-unknown-elf-g++ diff --git a/tests/opencl/cutcp/Makefile b/tests/opencl/cutcp/Makefile index 7d4ed97b..3d694a63 100644 --- a/tests/opencl/cutcp/Makefile +++ b/tests/opencl/cutcp/Makefile @@ -3,7 +3,7 @@ POCL_CC_PATH ?= $(wildcard ../../../../pocl/drops_riscv_cc) POCL_INC_PATH ?= $(wildcard ../include) POCL_LIB_PATH ?= $(wildcard ../lib) VORTEX_RT_PATH ?= $(wildcard ../../../runtime) -VX_SIMX_PATH ?= $(wildcard ../../../simX/obj_dir) +VX_SIMX_PATH ?= $(wildcard ../../../simx/obj_dir) CC = $(RISCV_TOOLCHAIN_PATH)/bin/riscv32-unknown-elf-gcc CXX = $(RISCV_TOOLCHAIN_PATH)/bin/riscv32-unknown-elf-g++ diff --git a/tests/opencl/lbm/Makefile b/tests/opencl/lbm/Makefile index 2f0116a8..ffa85d1a 100644 --- a/tests/opencl/lbm/Makefile +++ b/tests/opencl/lbm/Makefile @@ -3,7 +3,7 @@ POCL_CC_PATH ?= $(wildcard ../../../../pocl/drops_riscv_cc) POCL_INC_PATH ?= $(wildcard ../include) POCL_LIB_PATH ?= $(wildcard ../lib) VORTEX_RT_PATH ?= $(wildcard ../../../runtime) -VX_SIMX_PATH ?= $(wildcard ../../../simX/obj_dir) +VX_SIMX_PATH ?= $(wildcard ../../../simx/obj_dir) CC = $(RISCV_TOOLCHAIN_PATH)/bin/riscv32-unknown-elf-gcc CXX = $(RISCV_TOOLCHAIN_PATH)/bin/riscv32-unknown-elf-g++ diff --git a/tests/opencl/mri-q/Makefile b/tests/opencl/mri-q/Makefile index ff9f420c..0aa409b6 100644 --- a/tests/opencl/mri-q/Makefile +++ b/tests/opencl/mri-q/Makefile @@ -3,7 +3,7 @@ POCL_CC_PATH ?= $(wildcard ../../../../pocl/drops_riscv_cc) POCL_INC_PATH ?= $(wildcard ../include) POCL_LIB_PATH ?= $(wildcard ../lib) VORTEX_RT_PATH ?= $(wildcard ../../../runtime) -VX_SIMX_PATH ?= $(wildcard ../../../simX/obj_dir) +VX_SIMX_PATH ?= $(wildcard ../../../simx/obj_dir) CC = $(RISCV_TOOLCHAIN_PATH)/bin/riscv32-unknown-elf-gcc CXX = $(RISCV_TOOLCHAIN_PATH)/bin/riscv32-unknown-elf-g++ diff --git a/tests/opencl/reduce0/Makefile b/tests/opencl/reduce0/Makefile index b4aede1d..bb72241f 100644 --- a/tests/opencl/reduce0/Makefile +++ b/tests/opencl/reduce0/Makefile @@ -3,7 +3,7 @@ POCL_CC_PATH ?= $(wildcard ../../../../pocl/drops_riscv_cc) POCL_INC_PATH ?= $(wildcard ../include) POCL_LIB_PATH ?= $(wildcard ../lib) VORTEX_RT_PATH ?= $(wildcard ../../../runtime) -VX_SIMX_PATH ?= $(wildcard ../../../simX/obj_dir) +VX_SIMX_PATH ?= $(wildcard ../../../simx/obj_dir) CC = $(RISCV_TOOLCHAIN_PATH)/bin/riscv32-unknown-elf-gcc CXX = $(RISCV_TOOLCHAIN_PATH)/bin/riscv32-unknown-elf-g++ diff --git a/tests/opencl/sad/Makefile b/tests/opencl/sad/Makefile index a8314b9c..129996be 100644 --- a/tests/opencl/sad/Makefile +++ b/tests/opencl/sad/Makefile @@ -3,7 +3,7 @@ POCL_CC_PATH ?= $(wildcard ../../../../pocl/drops_riscv_cc) POCL_INC_PATH ?= $(wildcard ../include) POCL_LIB_PATH ?= $(wildcard ../lib) VORTEX_RT_PATH ?= $(wildcard ../../../runtime) -VX_SIMX_PATH ?= $(wildcard ../../../simX/obj_dir) +VX_SIMX_PATH ?= $(wildcard ../../../simx/obj_dir) CC = $(RISCV_TOOLCHAIN_PATH)/bin/riscv32-unknown-elf-gcc CXX = $(RISCV_TOOLCHAIN_PATH)/bin/riscv32-unknown-elf-g++ diff --git a/tests/opencl/spmv/Makefile b/tests/opencl/spmv/Makefile index eedbed22..f3c7a13f 100644 --- a/tests/opencl/spmv/Makefile +++ b/tests/opencl/spmv/Makefile @@ -3,7 +3,7 @@ POCL_CC_PATH ?= $(wildcard ../../../../pocl/drops_riscv_cc) POCL_INC_PATH ?= $(wildcard ../include) POCL_LIB_PATH ?= $(wildcard ../lib) VORTEX_RT_PATH ?= $(wildcard ../../../runtime) -VX_SIMX_PATH ?= $(wildcard ../../../simX/obj_dir) +VX_SIMX_PATH ?= $(wildcard ../../../simx/obj_dir) CC = $(RISCV_TOOLCHAIN_PATH)/bin/riscv32-unknown-elf-gcc CXX = $(RISCV_TOOLCHAIN_PATH)/bin/riscv32-unknown-elf-g++ diff --git a/tests/opencl/stencil/Makefile b/tests/opencl/stencil/Makefile index ba69490b..41e05787 100644 --- a/tests/opencl/stencil/Makefile +++ b/tests/opencl/stencil/Makefile @@ -3,7 +3,7 @@ POCL_CC_PATH ?= $(wildcard ../../../../pocl/drops_riscv_cc) POCL_INC_PATH ?= $(wildcard ../include) POCL_LIB_PATH ?= $(wildcard ../lib) VORTEX_RT_PATH ?= $(wildcard ../../../runtime) -VX_SIMX_PATH ?= $(wildcard ../../../simX/obj_dir) +VX_SIMX_PATH ?= $(wildcard ../../../simx/obj_dir) CC = $(RISCV_TOOLCHAIN_PATH)/bin/riscv32-unknown-elf-gcc CXX = $(RISCV_TOOLCHAIN_PATH)/bin/riscv32-unknown-elf-g++ diff --git a/tests/riscv/isa/Makefile b/tests/riscv/isa/Makefile index fba3bdd1..de35c0d0 100644 --- a/tests/riscv/isa/Makefile +++ b/tests/riscv/isa/Makefile @@ -10,7 +10,7 @@ TESTS := $(filter-out $(EXCLUDED_TESTS), $(ALL_TESTS)) all: run-simx: - $(foreach test, $(TESTS), ../../../sim/simX/simX -r -a rv32i -c 1 -i $(test) || exit;) + $(foreach test, $(TESTS), ../../../sim/simx/simx -r -a rv32i -c 1 -i $(test) || exit;) run-rtlsim: $(foreach test, $(TESTS), ../../../sim/rtlsim/rtlsim -r $(test) || exit;) diff --git a/tests/runtime/fibonacci/Makefile b/tests/runtime/fibonacci/Makefile index cd5195e0..1ea96718 100644 --- a/tests/runtime/fibonacci/Makefile +++ b/tests/runtime/fibonacci/Makefile @@ -30,7 +30,7 @@ run-rtlsim: $(PROJECT).bin ../../../sim/rtlsim/rtlsim $(PROJECT).bin run-simx: $(PROJECT).bin - ../../../sim/simX/simX -a rv32i -c 1 -i $(PROJECT).bin + ../../../sim/simx/simx -a rv32i -c 1 -i $(PROJECT).bin .depend: $(SRCS) $(CC) $(CFLAGS) -MM $^ > .depend; diff --git a/tests/runtime/hello/Makefile b/tests/runtime/hello/Makefile index 43e768b6..9c83df0c 100644 --- a/tests/runtime/hello/Makefile +++ b/tests/runtime/hello/Makefile @@ -30,7 +30,7 @@ run-rtlsim: $(PROJECT).bin ../../../sim/rtlsim/rtlsim $(PROJECT).bin run-simx: $(PROJECT).bin - ../../../sim/simX/simX -a rv32i -c 1 -i $(PROJECT).bin + ../../../sim/simx/simx -a rv32i -c 1 -i $(PROJECT).bin .depend: $(SRCS) $(CC) $(CFLAGS) -MM $^ > .depend; diff --git a/tests/runtime/simple/Makefile b/tests/runtime/simple/Makefile index dabb4cc0..79e2a2e5 100644 --- a/tests/runtime/simple/Makefile +++ b/tests/runtime/simple/Makefile @@ -30,7 +30,7 @@ run-rtlsim: $(PROJECT).bin ../../../sim/rtlsim/rtlsim $(PROJECT).bin run-simx: $(PROJECT).bin - ../../../sim/simX/simX -a rv32i -c 1 -i $(PROJECT).bin + ../../../sim/simx/simx -a rv32i -c 1 -i $(PROJECT).bin .depend: $(SRCS) $(CC) $(CFLAGS) -MM $^ > .depend;