aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorGravatar Peter McGoron 2022-07-21 01:09:45 -0400
committerGravatar Peter McGoron 2022-07-21 01:09:45 -0400
commitc4f401cff2858ec5b0ad3e8d46481f181476ebb2 (patch)
tree8f1490fc540527e420acfeb8e1784fbfced99652 /Makefile
parentstart spi master and slave with testbench (diff)
mode 00, write from master to slave works
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 450ea9a..18f175d 100644
--- a/Makefile
+++ b/Makefile
@@ -9,7 +9,7 @@ all: obj_dir/V${TESTBENCH_BASE}
./obj_dir/V${TESTBENCH_BASE} && gtkwave ${WAVEFILE}
obj_dir/V${TESTBENCH_BASE}.mk: ${FILES}
- verilator --trace --cc --exe ${FILES} --top ${TESTBENCH_BASE}
+ verilator -Wall -Wno-unused -Wpedantic --trace --cc --exe ${FILES} --top ${TESTBENCH_BASE}
obj_dir/V${TESTBENCH_BASE}: obj_dir/V${TESTBENCH_BASE}.mk
make -C obj_dir -f V${TESTBENCH_BASE}.mk