aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWojciech Kosior <kwojtus@protonmail.com>2020-10-10 16:56:48 +0200
committerWojciech Kosior <kwojtus@protonmail.com>2020-10-10 17:06:58 +0200
commit33f05839b7815a5a18a2b920dba4549d2bd7ce16 (patch)
tree9ec216c16d2dd520dd9f725900c9ba02b379b6c9
parent5e04a9626e2986fc40825d15cb09a274223381e9 (diff)
downloadAGH-engineering-thesis-33f05839b7815a5a18a2b920dba4549d2bd7ce16.tar.gz
AGH-engineering-thesis-33f05839b7815a5a18a2b920dba4549d2bd7ce16.zip
fix yosys synthesis
-rw-r--r--Makefile5
-rw-r--r--design/stack_machine.v2
2 files changed, 6 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index dff217c..39f1f1b 100644
--- a/Makefile
+++ b/Makefile
@@ -1,3 +1,5 @@
+PROJ_DIR := .
+
include Makefile.config
include Makefile.util
include tools/Makefile.tools
@@ -14,7 +16,8 @@ all : design.bin
design.v : design/rom.mem design/*.v
- $(IV) -E $(filter %.v,$^) -DROM_WORDS_COUNT=$(call FILE_LINES,$<) -o $@
+ $(IV) -Iinclude/ -E $(filter %.v,$^) \
+ -DROM_WORDS_COUNT=$(call FILE_LINES,$<) -o $@
design.json : design.v design/rom.mem design/font.mem
$(YOSYS) -p 'read_verilog -defer $<' \
diff --git a/design/stack_machine.v b/design/stack_machine.v
index e6030e4..f68421e 100644
--- a/design/stack_machine.v
+++ b/design/stack_machine.v
@@ -1,5 +1,7 @@
`default_nettype none
+`include "messages.vh"
+
module stack_machine_new
(
/* Those 2 are supposed to be common for both wishbone interfaces */