diff Makefile @ 553:1af6c1052993

Added untested code for generating ARM machine code
author Mike Pavone <pavone@retrodev.com>
date Sun, 23 Feb 2014 21:37:19 -0800
parents 0687b05061dd
children acec5464fa1e
line wrap: on
line diff
--- a/Makefile	Sun Feb 23 11:52:13 2014 -0800
+++ b/Makefile	Sun Feb 23 21:37:19 2014 -0800
@@ -88,6 +88,9 @@
 test_x86 : test_x86.o gen_x86.o
 	$(CC) -o test_x86 test_x86.o gen_x86.o
 
+test_arm : test_arm.o gen_arm.o mem.o
+	$(CC) -o test_arm test_arm.o gen_arm.o mem.o
+
 gen_fib : gen_fib.o gen_x86.o mem.o
 	$(CC) -o gen_fib gen_fib.o gen_x86.o mem.o