Added support for parsing of values (ie, integers) greater than 32 bits, and fixed PDP-10 Bus writes (parameter order differs from other emulators)
This commit is contained in:
parent
c0de732f76
commit
ef70ed74b3
11 changed files with 66 additions and 39 deletions
|
|
@ -216,7 +216,7 @@ class MemoryPDP10 {
|
|||
*/
|
||||
if (len === undefined) len = this.size;
|
||||
Component.assert(off >= 0 && off < this.size);
|
||||
for (i = off; len-- && i < this.size; i++) this.writeWordDirect(off, pattern, this.addr + off);
|
||||
for (i = off; len-- && i < this.size; i++) this.writeWordDirect(pattern, off, this.addr + off);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Reference in a new issue