More 80386 instructions

This commit is contained in:
Jeff Parsons 2015-03-29 15:57:57 -07:00 committed by jeffpar
commit f9cb8a5bec
15 changed files with 2873 additions and 1673 deletions

View file

@ -165,12 +165,7 @@ RAM.prototype.reset = function()
if (this.bus.addMemory(this.addrRAM, this.sizeRAM, Memory.TYPE.RAM)) {
this.fAllocated = true;
var status = Math.floor(this.sizeRAM / 1024) + "Kb";
if (this.comment) {
status += " (" + this.comment + ")";
this.comment = null;
}
this.status(status);
this.status(Math.floor(this.sizeRAM / 1024) + "Kb");
/*
* NOTE: I'm specifying MAXDEBUG for status() messages because I'm not yet sure I want these