Some PDP-10 disassembler clean-up

This commit is contained in:
Jeff Parsons 2017-02-25 21:19:41 -08:00 committed by Jeff Parsons
commit 3e30bde786
3 changed files with 94 additions and 78 deletions

View file

@ -3790,7 +3790,7 @@ PDP10.opUndefined = function(opCode)
*/
PDP10.opKA10 = function(opCode)
{
var op = (opCode / PDP10.OPCODE.SHIFT)|0;
var op = (opCode / PDP10.OPCODE.O_SHIFT)|0;
PDP10.aOpXXX_KA10[op].call(this, opCode);
};