diff options
author | Ian C <ianc@noddybox.co.uk> | 2024-11-30 07:58:01 +0000 |
---|---|---|
committer | Ian C <ianc@noddybox.co.uk> | 2024-11-30 07:58:01 +0000 |
commit | 2067a9488ff61d0ef12ee7223570f70849fe4a63 (patch) | |
tree | 5a8c7b91acdde3a806a36d6e7baebf99246a0197 /src/example/c64-tap.asm | |
parent | 2e82a0eb6e13f209a2a4492dc348c9d4f8509753 (diff) |
Removed examples for removed CBM TAP.
Diffstat (limited to 'src/example/c64-tap.asm')
-rw-r--r-- | src/example/c64-tap.asm | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/src/example/c64-tap.asm b/src/example/c64-tap.asm deleted file mode 100644 index 8094607..0000000 --- a/src/example/c64-tap.asm +++ /dev/null @@ -1,24 +0,0 @@ - ; 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 |