1
0
mirror of https://gitlab.com/camelot/kickc.git synced 2025-01-11 04:29:53 +00:00

Added a few missing fragments. Closes #449

This commit is contained in:
jespergravgaard 2020-11-20 20:46:42 +01:00
parent cb6953dd0d
commit 9a38de88ce
2 changed files with 18 additions and 0 deletions

View File

@ -0,0 +1,9 @@
lda {c1}
sta $fe
lda {c1}+1
sta $ff
lda #<c2
sta ($fe),y
iny
lda #>c2
sta ($fe),y

View File

@ -0,0 +1,9 @@
lda {c1}
sta $fe
lda {c1}+1
sta $ff
lda m1
sta ($fe),y
iny
lda m1+1
sta ($fe),y