summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorAstrid Smith2010-09-07 19:12:01 -0700
committerAstrid Smith2010-09-07 19:12:01 -0700
commit63ac7e42bd2aefab3ae00c0f5a81dffdf3c102db (patch)
treea308f1db0435ef16524dc1411118d44427d14ddd /Makefile
parentb3aef0ee73d2e2ee86c1a9f75cfd56d0be220d0f (diff)
IO port framework now works
A68k is defaulting all my address moves to word size, rather than long. I don't know whether I've expunged all this nonsense yet, but I'm trying. This version executes an infinite loop which writes 'A' to port 00h. I've patched in a write-to-console function on port 00h, so this can be used as a sort of debug monitor.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 262bfe3..f3bb30f 100644
--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,6 @@
ASM_FILES=alu.asm flags.asm opcodes.asm ports.asm interrupts.asm main.asm
ASM=main.asm
-C_FILES=loader.c bankswap.c video.c misc.c
+C_FILES=loader.c bankswap.c video.c misc.c debug.c
TIGCCFLAGS=-Wall
CFLAGS=-Wall -ltifiles