From 25302a2513307a3a41b76f5e568f0916713c0620 Mon Sep 17 00:00:00 2001 From: Ian C Date: Tue, 21 Sep 2021 21:17:14 +0100 Subject: Imported V1.9 --- src/example/prg.asm | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 src/example/prg.asm (limited to 'src/example/prg.asm') diff --git a/src/example/prg.asm b/src/example/prg.asm new file mode 100644 index 0000000..7433117 --- /dev/null +++ b/src/example/prg.asm @@ -0,0 +1,24 @@ + ; Simple example C64 code + ; + + cpu 6502 + + option codepage,cbm + + option output-file,prg.prg + option output-format,prg + option prg-start,start + + org $820 + +main: + lda #0 + clc +loop: + sta 53280 + adc #1 + and #$0f + jmp loop + +start: + jmp main -- cgit v1.2.3