1
0
mirror of https://gitlab.com/camelot/kickc.git synced 2025-01-14 09:30:57 +00:00

Added a fragment and the start of a line drawing mega65 program.

This commit is contained in:
jespergravgaard 2021-03-31 20:23:35 +02:00
parent ebbecaa875
commit 0d546d215f

View File

@ -0,0 +1,13 @@
lda {m2}
clc
adc #<{c1}
sta {m1}
lda {m2}+1
adc #>{c1}
sta {m1}+1
lda #0
adc #<{c1}>>$10
sta {m1}+2
lda #0
adc #>{c1}>>$10
sta {m1}+3