diff options
Diffstat (limited to 'src/example/c64-tap.asm')
-rw-r--r-- | src/example/c64-tap.asm | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/src/example/c64-tap.asm b/src/example/c64-tap.asm new file mode 100644 index 0000000..8094607 --- /dev/null +++ b/src/example/c64-tap.asm @@ -0,0 +1,24 @@ + ; Simple example C64 code + ; + + cpu 6502 + + option codepage,cbm + + option output-file,c64.tap + option output-format,cbm-tap + option cbm-tap-start,start + + org $820 + +main: + lda #0 + clc +loop: + sta 53280 + adc #1 + and #$0f + jmp loop + +start: + jmp main |