summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJulian Blake Kongslie2022-01-30 16:35:02 -0800
committerJulian Blake Kongslie2022-01-30 16:36:00 -0800
commit61b644866337d8db517beb8f089ef4311b83bd39 (patch)
tree2d2f66b4036f7ecca75a70f52386f7c8472ad7fd /Makefile
parentImplement DF and IF, and Dep and Exam switches. (diff)
downloadnoncpu-61b644866337d8db517beb8f089ef4311b83bd39.tar.xz
Working focal!
It turns out that indirect jumps don't preincrement. The interpreter is almost unreadable at this point due to debugging messages. Sorry.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 68ae4d1..915d910 100644
--- a/Makefile
+++ b/Makefile
@@ -27,7 +27,7 @@ build/%.bin: %.pal
27build/Vtop: $(SOURCES) $(HEADERS) 27build/Vtop: $(SOURCES) $(HEADERS)
28 @rm -rf verilator 28 @rm -rf verilator
29 @mkdir -p build verilator 29 @mkdir -p build verilator
30 verilator +1800-2017ext+sv -Wall -Wno-BLKSEQ -Wno-UNUSED -O3 -Ihdl $(OPTS) --Mdir verilator --trace --cc --build -j --exe --top-module top $(SOURCES) 30 verilator +1800-2017ext+sv -Wall -Wno-BLKSEQ -Wno-UNUSED -O3 -Ihdl $(OPTS) --Mdir verilator --autoflush --trace --cc --build -j --exe --top-module top $(SOURCES)
31 @ln -t build -f verilator/Vtop 31 @ln -t build -f verilator/Vtop
32 @rm -rf verilator 32 @rm -rf verilator
33 33