1
0
mirror of https://gitlab.com/camelot/kickc.git synced 2025-03-24 00:30:25 +00:00

Added missing fragments.

This commit is contained in:
jespergravgaard 2020-02-02 15:49:20 +01:00
parent 1fffef91f5
commit ac02d1bbc2
4 changed files with 24 additions and 0 deletions

@ -0,0 +1,5 @@
lda #<{c1}
sta ({z1}),y
iny
lda #>{c1}
sta ({z1}),y

@ -0,0 +1,5 @@
lda {m2}
sta ({z1}),y
iny
lda {m2}+1
sta ({z1}),y

@ -0,0 +1,7 @@
sec
lda {c1}
sbc #<{c2}
sta {m1}
lda {c1}+1
sbc #>{c2}
sta {m1}+1

@ -0,0 +1,7 @@
clc
lda {c1}
adc #<{c2}
sta {m1}
lda {c1}+1
adc #>{c2}
sta {m1}+1