From 9d13cc5e58f0b734b9ee110cfc3a76f4564d026a Mon Sep 17 00:00:00 2001 From: stnolting Date: Thu, 19 Dec 2024 20:26:58 +0100 Subject: [PATCH] [sim] ghdl: only use files from rtl/core --- sim/ghdl.run.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sim/ghdl.run.sh b/sim/ghdl.run.sh index 7a5af7ac2..daffe7aad 100755 --- a/sim/ghdl.run.sh +++ b/sim/ghdl.run.sh @@ -17,8 +17,8 @@ chmod 777 neorv32_tb.uart0_rx.out neorv32_tb.uart1_rx.out mkdir -p build # GHDL import -find ../rtl ../sim -type f -name '*.vhd' -exec \ - ghdl -i --std=08 --workdir=build --ieee=standard --work=neorv32 {} \; +find ../rtl/core ../sim -type f -name '*.vhd' -exec \ + ghdl -i --std=08 --workdir=build --ieee=standard --work=neorv32 {} \; # GHDL analyze $GHDL -m --work=neorv32 --workdir=build --std=08 neorv32_tb