mirror of
https://gitlab.com/camelot/kickc.git
synced 2025-01-01 13:30:50 +00:00
Added more fragments. Updated C64Debugger options.
This commit is contained in:
parent
205eed20eb
commit
8f3b8abdb3
@ -0,0 +1,5 @@
|
||||
lda {c1},x
|
||||
sta ({z1}),y
|
||||
iny
|
||||
lda {c1}+1,x
|
||||
sta ({z1}),y
|
@ -0,0 +1,2 @@
|
||||
ldy #{c1}+1
|
||||
lda ({z1}),y
|
@ -0,0 +1,2 @@
|
||||
iny
|
||||
lda ({z1}),y
|
@ -0,0 +1 @@
|
||||
lda ({z1}),y
|
@ -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");
|
||||
|
Loading…
Reference in New Issue
Block a user