aboutsummaryrefslogtreecommitdiff
path: root/src/example/vic20+8k-tap.asm
diff options
context:
space:
mode:
authorIan C <ianc@noddybox.co.uk>2024-11-30 07:58:01 +0000
committerIan C <ianc@noddybox.co.uk>2024-11-30 07:58:01 +0000
commit2067a9488ff61d0ef12ee7223570f70849fe4a63 (patch)
tree5a8c7b91acdde3a806a36d6e7baebf99246a0197 /src/example/vic20+8k-tap.asm
parent2e82a0eb6e13f209a2a4492dc348c9d4f8509753 (diff)
Removed examples for removed CBM TAP.
Diffstat (limited to 'src/example/vic20+8k-tap.asm')
-rw-r--r--src/example/vic20+8k-tap.asm30
1 files changed, 0 insertions, 30 deletions
diff --git a/src/example/vic20+8k-tap.asm b/src/example/vic20+8k-tap.asm
deleted file mode 100644
index f457551..0000000
--- a/src/example/vic20+8k-tap.asm
+++ /dev/null
@@ -1,30 +0,0 @@
- ; Simple example C64 code
- ;
-
- cpu 6502
-
- option codepage,cbm
-
- option output-file,vic20+8k.tap
- option output-format,cbm-tap
- option cbm-tap-start,start
- option cbm-tap-system,vic20+8k
-
- org $1300
-
-main:
- lda #0
- clc
-loop:
- sta 36879
- adc #1
- pha
- jsr $ffe4
- beq nokey
- rts
-nokey:
- pla
- jmp loop
-
-start:
- jmp main