More 80386 instructions
This commit is contained in:
parent
f098335db9
commit
f9cb8a5bec
15 changed files with 2873 additions and 1673 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue