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