mirror of
https://gitlab.com/camelot/kickc.git
synced 2025-02-06 13:31:05 +00:00
Added a few missing 16-bit fragments.
This commit is contained in:
parent
aa109d236f
commit
b4b4658696
8
src/main/fragment/vwsz1_gt_vwsz2_then_la1.asm
Normal file
8
src/main/fragment/vwsz1_gt_vwsz2_then_la1.asm
Normal file
@ -0,0 +1,8 @@
|
||||
lda {z1}
|
||||
cmp {z2}
|
||||
lda {z1}+1
|
||||
sbc {z2}+1
|
||||
bvc !+
|
||||
eor #$80
|
||||
!:
|
||||
bpl {la1}
|
7
src/main/fragment/vwuz1_gt_vbuc1_then_la1.asm
Normal file
7
src/main/fragment/vwuz1_gt_vbuc1_then_la1.asm
Normal file
@ -0,0 +1,7 @@
|
||||
lda {z1}+1
|
||||
bne {la1}
|
||||
lda {z1}
|
||||
cmp #{c1}
|
||||
beq !+
|
||||
bcs {la1}
|
||||
!:
|
@ -1,8 +1,8 @@
|
||||
lda {z1}
|
||||
cmp {z2}
|
||||
lda {z1}+1
|
||||
sbc {z2}+1
|
||||
bvc !+
|
||||
eor #$80
|
||||
lda {z2}+1
|
||||
cmp {z1}+1
|
||||
bne !+
|
||||
lda {z2}
|
||||
cmp {z1}
|
||||
!:
|
||||
bpl {la1}
|
||||
bcc {la1}
|
||||
beq {la1}
|
||||
|
Loading…
x
Reference in New Issue
Block a user