1
0
mirror of https://gitlab.com/camelot/kickc.git synced 2024-11-25 20:32:25 +00:00

Added missing fragments.

This commit is contained in:
jespergravgaard 2020-09-28 08:51:20 +02:00
parent abb12deed9
commit 81b638f060
5 changed files with 36 additions and 0 deletions

View File

@ -0,0 +1,8 @@
ldy #0
lda #<{c1}
eor ({z2}),y
sta ({z1}),y
iny
lda #>{c1}
eor ({z2}),y
sta ({z1}),y

View File

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

View File

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

View File

@ -0,0 +1,5 @@
ldy #1
lda ({z2}),y
sta {m1}
lda #0
sta {m1}+1

View File

@ -0,0 +1,5 @@
ldy #1
lda ({z1}),y
sta {z1}
dey
sty {z1}+1