1
0
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:
jespergravgaard 2019-10-05 08:29:28 +02:00
parent 6feeb0d842
commit 358f6d0047
3 changed files with 14 additions and 1 deletions

View File

@ -0,0 +1,6 @@
lda ({z1}),y
bne !+
iny
lda ({z1}),y
beq {la1}
!:

View File

@ -0,0 +1,7 @@
lda {m1}
sec
sbc #2
sta {m1}
bcs !+
dec {m1}+1
!:

View File

@ -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) {