1
0
mirror of https://gitlab.com/camelot/kickc.git synced 2024-08-01 02:29:30 +00:00

Standardized >> to use hex in fragments.

This commit is contained in:
jespergravgaard 2019-09-03 00:35:40 +02:00
parent 9b113b4bcd
commit 162b29b2d4
3 changed files with 6 additions and 6 deletions

View File

@ -2,7 +2,7 @@ lda #<{c1}
sta {z1}
lda #>{c1}
sta {z1}+1
lda #<{c1}>>16
lda #<{c1}>>$10
sta {z1}+2
lda #>{c1}>>16
lda #>{c1}>>$10
sta {z1}+3

View File

@ -4,9 +4,9 @@ sta {z1}
lda #>{c1}
adc #0
sta {z1}+1
lda #<{c1}>>16
lda #<{c1}>>$10
adc #0
sta {z1}+2
lda #>{c1}>>16
lda #>{c1}>>$10
adc #0
sta {z1}+3

View File

@ -1,8 +1,8 @@
lda {z1}+3
cmp #>{c1}>>16
cmp #>{c1}>>$10
bne {la1}
lda {z1}+2
cmp #<{c1}>>16
cmp #<{c1}>>$10
bne {la1}
lda {z1}+1
cmp #>{c1}