1
0
mirror of https://gitlab.com/camelot/kickc.git synced 2024-11-16 21:07:56 +00:00

Merge remote-tracking branch 'origin/master'

This commit is contained in:
jespergravgaard 2021-08-05 22:33:54 +02:00
commit c5c6a2dcdb
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}
!: