Fixed assorted EGA and 5170 save/restore/reset problems

This commit is contained in:
Jeff Parsons 2014-10-25 22:49:23 -07:00 committed by jeffpar
commit 95673181b7
12 changed files with 1160 additions and 1010 deletions

View file

@ -319,7 +319,11 @@ CPU.prototype.setFocus = function()
*/
CPU.prototype.isPowered = function()
{
return this.fPowered;
if (!this.fPowered) {
this.println(this.toString() + " not powered");
return false;
}
return true;
};
/**