mirror of
https://gitlab.com/camelot/kickc.git
synced 2025-01-28 13:32:29 +00:00
Added two missing signed word fragments.
This commit is contained in:
parent
3090fe4849
commit
8a560a294b
@ -0,0 +1,7 @@
|
|||||||
|
sec
|
||||||
|
lda {c1},x
|
||||||
|
sbc #<{c2}
|
||||||
|
sta {c1},x
|
||||||
|
lda {c1}+1,x
|
||||||
|
sbc #>{c2}
|
||||||
|
sta {c1}+1,x
|
@ -0,0 +1,7 @@
|
|||||||
|
sec
|
||||||
|
lda {c1},y
|
||||||
|
sbc #<{c2}
|
||||||
|
sta {c1},y
|
||||||
|
lda {c1}+1,y
|
||||||
|
sbc #>{c2}
|
||||||
|
sta {c1}+1,y
|
@ -139,6 +139,8 @@ public class TestFragments {
|
|||||||
public void testFragmentsExist() {
|
public void testFragmentsExist() {
|
||||||
testFragmentExists("pwsc1_derefidx_vbuxx=vwsc2");
|
testFragmentExists("pwsc1_derefidx_vbuxx=vwsc2");
|
||||||
testFragmentExists("pwsc1_derefidx_vbuyy=vwsc2");
|
testFragmentExists("pwsc1_derefidx_vbuyy=vwsc2");
|
||||||
|
testFragmentExists("pwsc1_derefidx_vbuxx=pwsc1_derefidx_vbuxx_minus_vbuc2");
|
||||||
|
testFragmentExists("pwsc1_derefidx_vbuyy=pwsc1_derefidx_vbuyy_minus_vbuc2");
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
x
Reference in New Issue
Block a user