mirror of
https://gitlab.com/camelot/kickc.git
synced 2025-03-24 15:32:58 +00:00
Added a few fragments.
This commit is contained in:
parent
6feeb0d842
commit
358f6d0047
@ -0,0 +1,6 @@
|
||||
lda ({z1}),y
|
||||
bne !+
|
||||
iny
|
||||
lda ({z1}),y
|
||||
beq {la1}
|
||||
!:
|
7
src/main/fragment/mos6502-common/vwum1=vwum1_minus_2.asm
Normal file
7
src/main/fragment/mos6502-common/vwum1=vwum1_minus_2.asm
Normal file
@ -0,0 +1,7 @@
|
||||
lda {m1}
|
||||
sec
|
||||
sbc #2
|
||||
sta {m1}
|
||||
bcs !+
|
||||
dec {m1}+1
|
||||
!:
|
@ -3364,7 +3364,7 @@ public class TestPrograms {
|
||||
private void testFile(String fileName, Integer upliftCombinations, CompileLog compileLog) throws IOException {
|
||||
System.out.println("Testing output for " + fileName);
|
||||
Compiler compiler = new Compiler();
|
||||
//compiler.setWarnFragmentMissing(true);
|
||||
compiler.setWarnFragmentMissing(true);
|
||||
compiler.setAsmFragmentBaseFolder(new File("src/main/fragment/").toPath());
|
||||
compiler.setAsmFragmentCacheFolder(null);
|
||||
if(compileLog != null) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user