getOpcode() can now handle infinite indirections without starving the emulator

This commit is contained in:
Jeff Parsons 2017-02-26 12:17:21 -08:00 committed by Jeff Parsons
commit 6cf141baf9
5 changed files with 259 additions and 249 deletions

View file

@ -4210,6 +4210,7 @@ PDP10.opIO = function(op)
PDP10.opUndefined = function(op)
{
this.println("undefined opcode: " + Str.toOct(op));
this.advancePC(-1);
this.stopCPU();
};