aboutsummaryrefslogtreecommitdiff
path: root/src/example/vic20-tap.asm
diff options
context:
space:
mode:
Diffstat (limited to 'src/example/vic20-tap.asm')
-rw-r--r--src/example/vic20-tap.asm30
1 files changed, 0 insertions, 30 deletions
diff --git a/src/example/vic20-tap.asm b/src/example/vic20-tap.asm
deleted file mode 100644
index ff5317b..0000000
--- a/src/example/vic20-tap.asm
+++ /dev/null
@@ -1,30 +0,0 @@
- ; Simple example C64 code
- ;
-
- cpu 6502
-
- option codepage,cbm
-
- option output-file,vic20.tap
- option output-format,cbm-tap
- option cbm-tap-start,start
- option cbm-tap-system,vic20
-
- org $1100
-
-main:
- lda #0
- clc
-loop:
- sta 36879
- adc #1
- pha
- jsr $ffe4
- beq nokey
- rts
-nokey:
- pla
- jmp loop
-
-start:
- jmp main