The Computer component's 'resume' property can now be overridden from the URL, since we now query it with getMachineParm(); a default machine parameter value can now be included on the call, too
This commit is contained in:
parent
06ad209576
commit
2a96d37c14
4 changed files with 63 additions and 76 deletions
|
|
@ -301,7 +301,7 @@ class DebuggerPDP11 extends Debugger {
|
|||
/*
|
||||
* Re-initialize Debugger message support if necessary
|
||||
*/
|
||||
var sMessages = cmp.getMachineParm('messages');
|
||||
var sMessages = /** @type {string|undefined} */ (cmp.getMachineParm('messages'));
|
||||
if (sMessages) this.messageInit(sMessages);
|
||||
|
||||
if (this.cpu.model < PDP11.MODEL_1140) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue