aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorWojciech Kosior <kwojtus@protonmail.com>2020-09-04 17:23:41 +0200
committerWojciech Kosior <kwojtus@protonmail.com>2020-09-04 17:23:41 +0200
commitdb138d654e4cfe8b7c143588735ae0405a09c8bc (patch)
tree26da917154a7257858ed4258434a20b5c2cbeadd /Makefile
parente724f3543ea145386ca02999346bc784ee6e448f (diff)
downloadAGH-engineering-thesis-db138d654e4cfe8b7c143588735ae0405a09c8bc.tar.gz
AGH-engineering-thesis-db138d654e4cfe8b7c143588735ae0405a09c8bc.zip
add bench for parametrized instantiation of models
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 8 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index cc93e93..a1cc1b2 100644
--- a/Makefile
+++ b/Makefile
@@ -35,6 +35,7 @@ STACK_MACHINE_OLD_TESTS := \
# Add other tests here if You need
TESTS := \
self \
+ self_32bit_word \
intercon \
div \
vga \
@@ -111,6 +112,13 @@ tests/self/test.vvp : tests/self/operations.mem tests/self/test.v \
-DMASTER_OPERATIONS_COUNT=$(call FILE_LINES,$<) \
$(filter %.v,$^) -o $@
+tests/self_32bit_word/test.vvp : tests/self_32bit_word/operations.mem \
+ tests/self_32bit_word/test.v models/slave.v models/master.v \
+ include/messages.vh
+ $(IV) $(IVFLAGS) -s self_32bit_test \
+ -DMASTER_OPERATIONS_COUNT=$(call FILE_LINES,$<) \
+ $(filter %.v,$^) -o $@
+
tests/sram_slave/test.vvp : tests/sram_slave/operations.mem \
tests/sram_slave/test.v models/sram.v models/master.v \
design/sram_slave.v include/messages.vh