Preparing web server for update to v1.15.4

This commit is contained in:
Jeff Parsons 2014-10-10 16:36:50 -07:00 committed by jeffpar
commit 1d9a5ee0df
39 changed files with 7519 additions and 1387 deletions

View file

@ -1003,7 +1003,7 @@ if (DEBUGGER) {
/*
* DOS interrupts, for tracing DOS operations
*/
Debugger.INT_DOS_CALL = 0x21;
Debugger.DOS_INT = 0x21;
Debugger.aDOSFuncDesc = {
0x00: "terminate program",
@ -1124,7 +1124,7 @@ if (DEBUGGER) {
}
}
this.cpu.addInterruptNotify(Debugger.INT_DOS_CALL, this, this.intDOSCall);
this.cpu.addInterruptNotify(Debugger.DOS_INT, this, this.intDOSCall);
this.setReady();