commit d6a89066605e3b8eeb30238b0457e4ecfbee2657
parent 69de38605fe8dd41567a9adb9f136cd9656376b3
Author: Brian Swetland <swetland@frotz.net>
Date: Sun, 5 Feb 2012 11:30:43 -0800
oops: fix the build
Diffstat:
1 file changed, 1 insertion(+), 4 deletions(-)
diff --git a/Makefile b/Makefile
@@ -10,12 +10,9 @@ all: a32 testbench
TESTS := $(wildcard tests/*.s)
RESULTS := $(TESTS:.s=.s.pass)
-testbench: $(SRC) rom.txt
+testbench: $(SRC)
iverilog -o testbench $(SRC)
-rom.txt: rom.s a32
- ./a32 rom.s rom.txt
-
a32: a32.c
gcc -g -Wall -o a32 a32.c