From 4bf4be55566440d9c08a48a38759f302b2d4cb02 Mon Sep 17 00:00:00 2001 From: Ian C Date: Thu, 22 Dec 2016 13:47:51 +0000 Subject: First stab at CPC TAPE file. --- src/example/Makefile | 4 ++-- src/example/cpc.asm | 4 ++-- src/example/cpc.cdt | Bin 34915 -> 0 bytes 3 files changed, 4 insertions(+), 4 deletions(-) delete mode 100644 src/example/cpc.cdt (limited to 'src/example') diff --git a/src/example/Makefile b/src/example/Makefile index a1807a2..8bf1992 100644 --- a/src/example/Makefile +++ b/src/example/Makefile @@ -20,7 +20,7 @@ # Makefile for examples # -ALL = spectrum.tap c64.t64 zx81.p gb.gb vcs.bin snes.sfc nes.nes cpc.cdt +ALL = spectrum.tap c64.t64 zx81.p gb.gb vcs.bin snes.sfc nes.nes cpc.tap CASM = ../casm all: $(ALL) $(CASM) @@ -36,7 +36,7 @@ spectrum.tap: spectrum.asm $(CASM) c64.t64: c64.asm $(CASM) $(CASM) c64.asm -cpc.cdt: cpc.asm +cpc.tap: cpc.asm $(CASM) cpc.asm zx81.p: zx81.asm $(CASM) diff --git a/src/example/cpc.asm b/src/example/cpc.asm index 1490cf9..aa9fcb0 100644 --- a/src/example/cpc.asm +++ b/src/example/cpc.asm @@ -4,7 +4,7 @@ ; ; RUN "" - option output-file,cpc.cdt + option output-file,cpc.tap option output-format,cpc option cpc-start,start @@ -18,5 +18,5 @@ loop: inc hl jr loop -msg: org $9000 +msg: org $8800 defb "Hello World",0 diff --git a/src/example/cpc.cdt b/src/example/cpc.cdt deleted file mode 100644 index 06bbcc0..0000000 Binary files a/src/example/cpc.cdt and /dev/null differ -- cgit v1.2.3