New blog post about the PDP-10 (and added machine support for the PDP-10 to Jekyll)
This commit is contained in:
parent
31122ce6d5
commit
1370563e97
3 changed files with 7 additions and 6 deletions
|
|
@ -5,7 +5,7 @@ in the Front Matter of our Markdown documents, for compatibility with the Jekyll
|
|||
|
||||
'id' (eg, "ibm5150")
|
||||
'name' (eg, "IBM PC (Model 5150) with Monochrome Display")
|
||||
'type' (eg, "c1p", "pcx86", "pc8080", "pdp11")
|
||||
'type' (eg, "c1p", "pcx86", "pc8080", "pdp10", "pdp11")
|
||||
'debugger' (default is false)
|
||||
'config' (default is "machine.xml")
|
||||
'template' (default is "machine.xsl")
|
||||
|
|
@ -38,7 +38,7 @@ of our Markdown or XML documents. Examples: 'automount' becomes 'autoMount', 'a
|
|||
{% capture machine_type %}{{ machine.type | remove:"-dbg" }}{% endcapture %}
|
||||
{% if machine_type == "c1p" %}
|
||||
{% assign machine_app = "c1pjs" %}
|
||||
{% elsif machine_type == "pdp11" %}
|
||||
{% elsif machine_type == "pdp10" or machine_type == "pdp11" %}
|
||||
{% assign machine_app = "pdpjs" %}
|
||||
{% else %}
|
||||
{% capture machine_app %}{{ machine_type }}{% endcapture %}
|
||||
|
|
@ -116,6 +116,7 @@ of our Markdown or XML documents. Examples: 'automount' becomes 'autoMount', 'a
|
|||
{% if machine_type == "c1p" %}{% assign array_scripts = site.pcjs.c1p_scripts %}{% endif %}
|
||||
{% if machine_type == "pcx86" %}{% assign array_scripts = site.pcjs.pcx86_scripts %}{% endif %}
|
||||
{% if machine_type == "pc8080" %}{% assign array_scripts = site.pcjs.pc8080_scripts %}{% endif %}
|
||||
{% if machine_type == "pdp10" %}{% assign array_scripts = site.pcjs.pdp10_scripts %}{% endif %}
|
||||
{% if machine_type == "pdp11" %}{% assign array_scripts = site.pcjs.pdp11_scripts %}{% endif %}
|
||||
{% for script in array_scripts %}
|
||||
{% if script != "/modules/shared/lib/nodebug.js" or machine.debug != true and site.pcjs.debug != true %}
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
{% capture machine_type %}{{ machine.type | remove:"-dbg" }}{% endcapture %}
|
||||
{% if machine_type == "c1p" %}
|
||||
{% assign machine_app = "c1pjs" %}
|
||||
{% elsif machine_type == "pdp11" %}
|
||||
{% elsif machine_type == "pdp10" or machine_type == "pdp11" %}
|
||||
{% assign machine_app = "pdpjs" %}
|
||||
{% else %}
|
||||
{% capture machine_app %}{{ machine_type }}{% endcapture %}
|
||||
|
|
|
|||
Loading…
Reference in a new issue