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:
Jeff Parsons 2017-02-24 13:07:38 -08:00 committed by Jeff Parsons
commit ef70ed74b3
11 changed files with 66 additions and 39 deletions

View file

@ -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);
}
/**