Fixed opIO() dispatch

This commit is contained in:
Jeff 2017-03-04 16:52:44 -08:00 committed by Jeff Parsons
commit 87e17a695c
5 changed files with 172 additions and 172 deletions

View file

@ -4963,7 +4963,7 @@ PDP10.opCONSO = function(op, dev)
*/
PDP10.opIO = function(op)
{
PDP10.aOpIO_KA10[op & 7].call(this, (op >> 3) & 0o177);
PDP10.aOpIO_KA10[op & 7].call(this, op, (op >> 3) & 0o177);
};
/**