diff options
author | Wojciech Kosior <kwojtus@protonmail.com> | 2020-09-02 20:33:00 +0200 |
---|---|---|
committer | Wojciech Kosior <kwojtus@protonmail.com> | 2020-09-02 20:33:00 +0200 |
commit | 88e9df29ed884b1ef0f5795755d8259b00727f55 (patch) | |
tree | 63752cb13358d40184f4397475c7c3bbef557365 /Makefile | |
parent | 538da35db55a07b362046aef9c9d8602b21dd378 (diff) | |
download | AGH-engineering-thesis-88e9df29ed884b1ef0f5795755d8259b00727f55.tar.gz AGH-engineering-thesis-88e9df29ed884b1ef0f5795755d8259b00727f55.zip |
don't exceed 80 characters in a line
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -109,13 +109,13 @@ tests/vga/test.vvp : tests/vga/test.v design/vga.v models/vga_display.v \ include/messages.vh $(IV) $(IVFLAGS) -s vga_test $^ -o $@ -tests/stack_machine_%/test.vvp : tests/stack_machine_%/instructions.mem \ - tests/stack_machine_%/words_to_verify.mem \ +tests/stack_machine_%/test.vvp : tests/stack_machine_%/words_to_verify.mem \ + tests/stack_machine_%/instructions.mem \ tests/stack_machine_%/test.v models/slave.v \ design/stack_machine.v design/div.v include/messages.vh $(IV) $(IVFLAGS) -s stack_machine_test \ - -DINSTRUCTIONS_COUNT=$(call FILE_LINES,$<) \ - -DWORDS_TO_VERIFY_COUNT=$(call FILE_LINES,$(filter %fy.mem,$^)) \ + -DINSTRUCTIONS_COUNT=$(call FILE_LINES,$(filter %ions.mem,$^)) \ + -DWORDS_TO_VERIFY_COUNT=$(call FILE_LINES,$<) \ $(filter %.v,$^) -o $@ tests/soc_simple_display/test.vvp : tests/soc_simple_display/instructions.mem \ |