aboutsummaryrefslogtreecommitdiff
path: root/src/example
diff options
context:
space:
mode:
authorIan C <ianc@noddybox.co.uk>2016-12-22 13:47:51 +0000
committerIan C <ianc@noddybox.co.uk>2016-12-22 13:47:51 +0000
commit4bf4be55566440d9c08a48a38759f302b2d4cb02 (patch)
treeef1d7818e0bcd3339971f5ae1c423cbe83b97693 /src/example
parenta29f0032694cda4167e02d954d5b88ab89249e2b (diff)
First stab at CPC TAPE file.
Diffstat (limited to 'src/example')
-rw-r--r--src/example/Makefile4
-rw-r--r--src/example/cpc.asm4
-rw-r--r--src/example/cpc.cdtbin34915 -> 0 bytes
3 files changed, 4 insertions, 4 deletions
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
--- a/src/example/cpc.cdt
+++ /dev/null
Binary files differ