Added server support for running uncompiled machines
This commit is contained in:
parent
7b160f296b
commit
c5d9b7dfcc
22 changed files with 2939 additions and 2753 deletions
|
|
@ -104,7 +104,6 @@ if (typeof module !== 'undefined') {
|
|||
function Memory(addr, size, fReadOnly, controller)
|
||||
{
|
||||
var i;
|
||||
|
||||
this.cb = size || 0;
|
||||
this.adw = null;
|
||||
this.offset = 0;
|
||||
|
|
@ -113,7 +112,7 @@ function Memory(addr, size, fReadOnly, controller)
|
|||
this.fDirty = this.fDirtyEver = false;
|
||||
|
||||
if (BACKTRACK) {
|
||||
if (this.fReadOnly || !size || controller) {
|
||||
if (!size || controller) {
|
||||
this.readBackTrack = Memory.readBackTrackNone;
|
||||
this.writeBackTrack = Memory.writeBackTrackNone;
|
||||
} else {
|
||||
|
|
|
|||
Loading…
Reference in a new issue