diff options
| -rw-r--r-- | Makefile | 7 | ||||
| -rw-r--r-- | main.asm | 4 |
2 files changed, 7 insertions, 4 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..1b23ee5 --- /dev/null +++ b/Makefile @@ -0,0 +1,7 @@ +ASM_FILES=alu.asm flags.asm opcodes.asm ports.asm interrupts.asm main.asm +C_FILES=loader.c bankswap.c video.c + +CFLAGS=-Wall + +z680.89k: $(ASM_FILES) $(C_FILES) + tigcc $(CFLAGS) $(ASM_FILES) $(C_FILES) -o z680.89z @@ -34,10 +34,6 @@ ;;; but I don't really care to go to the effort to make it so. ;;; D7 = IX (hi), IY (low) -;;; Assemble with the following flags: -;;; a68k -l -n -g -t main.asm -;;; -n is important, it disables optimizations - ;;; emulated I and R are both in RAM |
