diff options
author | Wojciech Kosior <kwojtus@protonmail.com> | 2020-09-04 17:23:41 +0200 |
---|---|---|
committer | Wojciech Kosior <kwojtus@protonmail.com> | 2020-09-04 17:23:41 +0200 |
commit | db138d654e4cfe8b7c143588735ae0405a09c8bc (patch) | |
tree | 26da917154a7257858ed4258434a20b5c2cbeadd /Makefile | |
parent | e724f3543ea145386ca02999346bc784ee6e448f (diff) | |
download | AGH-engineering-thesis-db138d654e4cfe8b7c143588735ae0405a09c8bc.tar.gz AGH-engineering-thesis-db138d654e4cfe8b7c143588735ae0405a09c8bc.zip |
add bench for parametrized instantiation of models
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -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 |