1
0
mirror of https://gitlab.com/camelot/kickc.git synced 2024-09-08 17:54:40 +00:00

Added 2 fragments for Clay Cowgill

This commit is contained in:
jespergravgaard 2019-08-22 23:12:33 +02:00
parent a3b3eadeef
commit 4c6014e448
2 changed files with 14 additions and 0 deletions

View File

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

View File

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