Starting on v1.21.7 (with live register display fixes)

This commit is contained in:
Jeff Parsons 2016-04-15 12:03:17 -07:00
commit 84d3f0da00
206 changed files with 286 additions and 260 deletions

View file

@ -4145,7 +4145,7 @@ X86CPU.prototype.updateReg = function(sReg, nValue)
};
/**
* updateStatus()
* updateStatus(fForce)
*
* This provides periodic Control Panel updates (eg, a few times per second; see STATUS_UPDATES_PER_SECOND).
* this is where we take care of any DOM updates (eg, register values) while the CPU is running.
@ -4196,8 +4196,6 @@ X86CPU.prototype.updateStatus = function(fForce)
var controlSpeed = this.bindings["speed"];
if (controlSpeed) controlSpeed.textContent = this.getSpeedCurrent();
this.parent.updateStatus.call(this, fForce);
};
/**