PDP-10 Debugger now supports command overrides from the page settings (with Jekyll)
This commit is contained in:
parent
ea61907f02
commit
73a0fa200e
1 changed files with 2 additions and 1 deletions
|
|
@ -26,6 +26,7 @@ The following optional machine properties will be added to the 'parms' property:
|
||||||
'drives' (eg, '[{name:"68Mb Hard Disk",type:4,path:"http://archive.pcjs.org/disks/pc/fixed/68mb/win95.json"}]')
|
'drives' (eg, '[{name:"68Mb Hard Disk",type:4,path:"http://archive.pcjs.org/disks/pc/fixed/68mb/win95.json"}]')
|
||||||
'resume' (eg, "1")
|
'resume' (eg, "1")
|
||||||
'state' (eg, "state.json")
|
'state' (eg, "state.json")
|
||||||
|
'commands' (debugger commands, if any)
|
||||||
'messages' (eg, "fault")
|
'messages' (eg, "fault")
|
||||||
'connection' (eg, "serialPort->vt100a.serialPort")
|
'connection' (eg, "serialPort->vt100a.serialPort")
|
||||||
|
|
||||||
|
|
@ -101,7 +102,7 @@ of our Markdown or XML documents. Examples: 'automount' becomes 'autoMount', 'a
|
||||||
{% else %}
|
{% else %}
|
||||||
{% assign machine_template = machine.template %}
|
{% assign machine_template = machine.template %}
|
||||||
{% endunless %}
|
{% endunless %}
|
||||||
{% capture machine_parms %}{{ site.left_brace }}autoMount:{{ machine_autoMount }}{{ machine_autoPower }}{{ machine_autoStart }}{{ machine_drives }},resume:"{{ machine.resume }}",state:"{{ machine.state }}",messages:"{{ machine.messages }}",connection:"{{ machine.connection }}"{{ site.right_brace }}{% endcapture %}
|
{% capture machine_parms %}{{ site.left_brace }}autoMount:{{ machine_autoMount }}{{ machine_autoPower }}{{ machine_autoStart }}{{ machine_drives }},resume:"{{ machine.resume }}",state:"{{ machine.state }}",commands:"{{ machine.commands }}",messages:"{{ machine.messages }}",connection:"{{ machine.connection }}"{{ site.right_brace }}{% endcapture %}
|
||||||
{% if site.pcjs.compiled == true and machine.uncompiled != true %}
|
{% if site.pcjs.compiled == true and machine.uncompiled != true %}
|
||||||
{% capture machine_script %}<!--suppress BadExpressionStatementJS -->
|
{% capture machine_script %}<!--suppress BadExpressionStatementJS -->
|
||||||
<script type="text/javascript" src="{{ site.baseurl }}/versions/{{ machine_app }}/{{ site.pcjs.version }}/{{ machine_file }}.js"></script>{% endcapture %}
|
<script type="text/javascript" src="{{ site.baseurl }}/versions/{{ machine_app }}/{{ site.pcjs.version }}/{{ machine_file }}.js"></script>{% endcapture %}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue