1
0
mirror of https://gitlab.com/camelot/kickc.git synced 2024-09-29 03:56:15 +00:00

Added a few missing fragments.

This commit is contained in:
jespergravgaard 2021-08-05 16:29:34 +02:00
parent e58bff087e
commit 45410860ad
3 changed files with 18 additions and 0 deletions

View File

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

View File

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

View File

@ -0,0 +1,7 @@
ldy #0
lda ({z1}),y
bne !+
iny
lda ({z1}),y
beq {la1}
!: