PDP-11 command-line (Node-based) operation is finally working
This commit is contained in:
parent
ded8f15e86
commit
4b345bb3d2
19 changed files with 552 additions and 438 deletions
|
|
@ -67,8 +67,8 @@ class ROMPDP11 extends Component {
|
|||
this.abInit = null;
|
||||
this.aSymbols = null;
|
||||
|
||||
this.addrROM = parmsROM['addr'];
|
||||
this.sizeROM = parmsROM['size'];
|
||||
this.addrROM = +parmsROM['addr'];
|
||||
this.sizeROM = +parmsROM['size'];
|
||||
this.fRetainROM = false;
|
||||
|
||||
/*
|
||||
|
|
@ -83,6 +83,9 @@ class ROMPDP11 extends Component {
|
|||
* Most ROMs are not aliased, in which case the 'alias' property should have the default value of null.
|
||||
*/
|
||||
this.addrAlias = parmsROM['alias'];
|
||||
if (typeof this.addrAlias == "string") {
|
||||
this.addrAlias = eval(this.addrAlias);
|
||||
}
|
||||
|
||||
this.sFilePath = parmsROM['file'];
|
||||
this.sFileName = Str.getBaseName(this.sFilePath);
|
||||
|
|
|
|||
Loading…
Reference in a new issue