From 82471549ef8d6106bd7d8b1a1c0b20001c83598e Mon Sep 17 00:00:00 2001 From: Daniel Cliche Date: Mon, 9 Sep 2024 09:47:18 -0400 Subject: [PATCH] Add ability to update sim program without restarting app --- soc/rtl/sim/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/soc/rtl/sim/Makefile b/soc/rtl/sim/Makefile index 5211981..2df161c 100644 --- a/soc/rtl/sim/Makefile +++ b/soc/rtl/sim/Makefile @@ -37,7 +37,7 @@ sim: top.sv sim_main.cpp $(PROGRAM) $(MAKE) -j 4 -C obj_dir -f Vtop.mk run: sim - cp $(PROGRAM) . + ln -f -s $(PROGRAM) . obj_dir/Vtop .PHONY: all clean