diff --git a/src/test/java/dk/camelot64/kickc/test/TestPrograms.java b/src/test/java/dk/camelot64/kickc/test/TestPrograms.java index cc54987f7..f88d83526 100644 --- a/src/test/java/dk/camelot64/kickc/test/TestPrograms.java +++ b/src/test/java/dk/camelot64/kickc/test/TestPrograms.java @@ -472,6 +472,16 @@ public class TestPrograms { // compileAndCompare("examples/cx16/cx16-vera.c"); //} + @Test + public void testBankAddressing() throws IOException, URISyntaxException { + compileAndCompare("examples/cx16/bankaddressing.c"); + } + + @Test + public void testLoadFileInBank() throws IOException, URISyntaxException { + compileAndCompare("examples/cx16/load_file_in_bank.c"); + } + @Test public void testCx16VeraLayers() throws IOException, URISyntaxException { compileAndCompare("examples/cx16/cx16-veralayers.c");