diff options
author | Wojciech Kosior <kwojtus@protonmail.com> | 2020-09-07 17:41:49 +0200 |
---|---|---|
committer | Wojciech Kosior <kwojtus@protonmail.com> | 2020-09-07 17:41:49 +0200 |
commit | 328982871bb894f70eecb7868b6b6019fed76472 (patch) | |
tree | bd074d01d9dee6b37705eb82fe62692ba526d384 /Makefile | |
parent | 85c3a73d3978977a06d679ef5e41eea22fd5ccd7 (diff) | |
download | AGH-engineering-thesis-328982871bb894f70eecb7868b6b6019fed76472.tar.gz AGH-engineering-thesis-328982871bb894f70eecb7868b6b6019fed76472.zip |
rename intercon to slave_dispatcher (soc module will remporarily stop working from this commit on)
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -49,7 +49,7 @@ STACK_MACHINE_TESTS := \ TESTS := \ self \ self_32bit_word \ - intercon \ + slave_dispatcher \ div \ vga \ sram_slave \ @@ -147,10 +147,10 @@ tests/sram_slave/test.vvp : tests/sram_slave/operations.mem \ -DMASTER_OPERATIONS_COUNT=$(call FILE_LINES,$<) \ $(filter %.v,$^) -o $@ -tests/intercon/test.vvp : tests/intercon/operations.mem tests/intercon/test.v \ - models/slave.v models/master.v design/intercon.v \ - include/messages.vh - $(IV) $(IVFLAGS) -s intercon_test \ +tests/slave_dispatcher/test.vvp : tests/slave_dispatcher/operations.mem \ + tests/slave_dispatcher/test.v models/slave.v models/master.v \ + design/slave_dispatcher.v include/messages.vh + $(IV) $(IVFLAGS) -s slave_dispatcher_test \ -DMASTER_OPERATIONS_COUNT=$(call FILE_LINES,$<) \ $(filter %.v,$^) -o $@ |