diff options
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 |