aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWojciech Kosior <kwojtus@protonmail.com>2020-09-02 20:33:00 +0200
committerWojciech Kosior <kwojtus@protonmail.com>2020-09-02 20:33:00 +0200
commit88e9df29ed884b1ef0f5795755d8259b00727f55 (patch)
tree63752cb13358d40184f4397475c7c3bbef557365
parent538da35db55a07b362046aef9c9d8602b21dd378 (diff)
downloadAGH-engineering-thesis-88e9df29ed884b1ef0f5795755d8259b00727f55.tar.gz
AGH-engineering-thesis-88e9df29ed884b1ef0f5795755d8259b00727f55.zip
don't exceed 80 characters in a line
-rw-r--r--Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index e28a276..cd6c914 100644
--- a/Makefile
+++ b/Makefile
@@ -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 \