1
0
mirror of https://gitlab.com/camelot/kickc.git synced 2024-09-29 18:54:55 +00:00

Added more fragments. Updated C64Debugger options.

This commit is contained in:
jespergravgaard 2020-12-27 00:13:16 +01:00
parent 205eed20eb
commit 8f3b8abdb3
5 changed files with 11 additions and 1 deletions

View File

@ -0,0 +1,5 @@
lda {c1},x
sta ({z1}),y
iny
lda {c1}+1,x
sta ({z1}),y

View File

@ -0,0 +1,2 @@
ldy #{c1}+1
lda ({z1}),y

View File

@ -0,0 +1,2 @@
iny
lda ({z1}),y

View File

@ -0,0 +1 @@
lda ({z1}),y

View File

@ -480,7 +480,7 @@ public class KickC implements Callable<Integer> {
String emuOptions = "";
if(emulator.equals("C64Debugger")) {
Path viceSymbolsPath = outputDir.resolve(outputFileNameBase + ".vs");
emuOptions = "-symbols " + viceSymbolsPath + " -wait 2500" + " ";
emuOptions = "-symbols " + viceSymbolsPath + " -autojmp -prg ";
}
// The program names used by VICE emulators
List<String> viceEmus = Arrays.asList("x64", "x64sc", "x128", "x64dtv", "xcbm2", "xcbm5x0", "xpet", "xplus4", "xscpu64", "xvic");