32-bit signed division fixes

This commit is contained in:
Jeff Parsons 2015-10-30 18:09:04 -07:00
commit a22bf5dc85
3 changed files with 72 additions and 69 deletions

View file

@ -139,7 +139,7 @@ function CPU(parmsCPU, nCyclesDefault)
this.aVideo = [];
var cpu = this;
this.onRunTimeout = function() { cpu.runCPU(); };
this.onRunTimeout = function onRunTimeout() { cpu.runCPU(); };
this.setReady();
}