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

Added missing fragments.

This commit is contained in:
jespergravgaard 2019-10-20 11:31:09 +02:00
parent 9e6fcdc781
commit dc9480a8c8
4 changed files with 29 additions and 12 deletions

View File

@ -0,0 +1,13 @@
lda {m2}
asl
sta {m1}
lda {m2}+1
rol
sta {m1}+1
lda {m2}+2
rol
sta {m1}+2
lda {m2}+3
rol
sta {m1}+3

View File

@ -1,16 +1,16 @@
lda {m2}
asl
sta {m1}
lda {m2}+1
rol
sta {m1}+1
lda {m2}+2
rol
sta {m1}+2
lda {m2}+3
rol
sta {m1}+3
asl {m1}
rol {m1}+1
rol {m1}+2
rol {m1}+3
asl {m1}
rol {m1}+1
rol {m1}+2
rol {m1}+3

View File

@ -1,16 +1,20 @@
lda {m2}
asl
sta {m1}
lda {m2}+1
rol
sta {m1}+1
lda {m2}+2
rol
sta {m1}+2
lda {m2}+3
rol
sta {m1}+3
ldy #3
!:
asl {m1}
rol {m1}+1
rol {m1}+2
rol {m1}+3
dey
bne !-
asl {m1}
rol {m1}+1
rol {m1}+2
rol {m1}+3

View File

@ -1,10 +1,14 @@
lda {m2}
asl
sta {m1}
lda {m2}+1
rol
sta {m1}+1
lda {m2}+2
rol
sta {m1}+2
lda {m2}+3
rol
sta {m1}+3
asl {m1}
rol {m1}+1
@ -18,7 +22,3 @@ asl {m1}
rol {m1}+1
rol {m1}+2
rol {m1}+3
asl {m1}
rol {m1}+1
rol {m1}+2
rol {m1}+3