1
0
mirror of https://gitlab.com/camelot/kickc.git synced 2024-11-22 16:33:48 +00:00

Added missing fragments.

This commit is contained in:
jespergravgaard 2021-02-15 13:44:29 +01:00
parent f3a878014b
commit d7e6ad8fea
4 changed files with 34 additions and 0 deletions

View File

@ -0,0 +1,11 @@
clc
ldy #0
lda {c1},x
adc ({z1}),y
pha
iny
lda {c1}+1,x
adc ({z1}),y
sta {z1}+1
pla
sta {z1}

View File

@ -0,0 +1,9 @@
clc
ldy #0
lda {c1},x
adc ({z2}),y
sta {z1}
iny
lda {c1}+1,x
adc ({z2}),y
sta {z1}+1

View File

@ -0,0 +1,7 @@
clc
lda {c1},x
adc {c2},y
sta {z1}
lda {c1}+1,x
adc {c2}+1,y
sta {z1}+1

View File

@ -0,0 +1,7 @@
clc
lda {c1},y
adc {c2},x
sta {z1}
lda {c1}+1,y
adc {c2}+1,x
sta {z1}+1