Automatically load debugger script named apple1.dbg if it exists

git-svn-id: svn+ssh://svn.phoenixbox.net/svn/apple1/trunk@63 64f78de7-aa59-e511-a0e8-0002a5492df0
This commit is contained in:
Daniel Loffgren 2015-09-26 23:30:03 +00:00
parent 379075260f
commit caf0f3b028
1 changed files with 9 additions and 1 deletions

View File

@ -88,6 +88,15 @@ int main(int argc, const char * argv[])
v6502_loadFileAtAddress(cpu->memory, "apple1.rom", RESET_VECTOR);
//v6502_map(cpu->memory, start, ROM_SIZE, romMirrorCallback, NULL, NULL);
// Load debugger script
int verbose = 0;
FILE *file = fopen("apple1.dbg", "r");
if (file) {
printf("Loading debugger script...\n");
v6502_runDebuggerScript(cpu, file, breakpoint_list, table, run, &verbose);
fclose(file);
}
// Attach PIA
printf("Initializing PIA...\n");
pia = pia_create(cpu->memory);
@ -98,7 +107,6 @@ int main(int argc, const char * argv[])
printf("Running...\n");
run(cpu);
int verbose = 0;
int commandLen;
HistEvent ev;
History *hist = history_init();