Minimal infrastructure for instantiating a PDP-10 test machine
This commit is contained in:
parent
0aa88da301
commit
c25ad00c41
15 changed files with 181 additions and 13 deletions
12
devices/pdp10/machine/README.md
Normal file
12
devices/pdp10/machine/README.md
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
---
|
||||
layout: page
|
||||
title: PDP-10 Machine Configurations
|
||||
permalink: /devices/pdp10/machine/
|
||||
---
|
||||
|
||||
PDP-10 Machine Configurations
|
||||
-----------------------------
|
||||
|
||||
PDPjs supports the following PDP-10 machine configurations:
|
||||
|
||||
* [PDP-10 Model KA10](/devices/pdp10/machine/ka10/)
|
||||
12
devices/pdp10/machine/ka10/README.md
Normal file
12
devices/pdp10/machine/ka10/README.md
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
---
|
||||
layout: page
|
||||
title: PDP-10 (Model KA10) Machine Configurations
|
||||
permalink: /devices/pdp10/machine/ka10/
|
||||
---
|
||||
|
||||
PDP-10 (Model KA10) Machine Configurations
|
||||
------------------------------------------
|
||||
|
||||
PDPjs supports the following PDP-10 Model KA10 machine configurations:
|
||||
|
||||
* [PDP-10 Model KA10 Test Machine](/devices/pdp10/machine/ka10/test/) (with [Debugger](/devices/pdp10/machine/ka10/test/debugger/))
|
||||
15
devices/pdp10/machine/ka10/test/README.md
Normal file
15
devices/pdp10/machine/ka10/test/README.md
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
---
|
||||
layout: page
|
||||
title: PDP-10 (Model KA10) Test Machine
|
||||
permalink: /devices/pdp10/machine/ka10/test/
|
||||
machines:
|
||||
- id: ka10test
|
||||
type: pdp10
|
||||
---
|
||||
|
||||
PDP-10 Test Machine
|
||||
-------------------
|
||||
|
||||
A PDP-10 (Model KA10) is simulated below.
|
||||
|
||||
{% include machine.html id="ka10test" %}
|
||||
16
devices/pdp10/machine/ka10/test/debugger/README.md
Normal file
16
devices/pdp10/machine/ka10/test/debugger/README.md
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
---
|
||||
layout: page
|
||||
title: PDP-10 (Model KA10) Test Machine with Debugger
|
||||
permalink: /devices/pdp10/machine/ka10/test/debugger/
|
||||
machines:
|
||||
- id: ka10test
|
||||
type: pdp10
|
||||
debugger: true
|
||||
---
|
||||
|
||||
PDP-10 Test Machine with Debugger
|
||||
---------------------------------
|
||||
|
||||
A PDP-10 (Model KA10) is simulated below.
|
||||
|
||||
{% include machine.html id="ka10test" %}
|
||||
12
devices/pdp10/machine/ka10/test/debugger/machine.xml
Normal file
12
devices/pdp10/machine/ka10/test/debugger/machine.xml
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?xml-stylesheet type="text/xsl" href="/versions/pdpjs/1.34.0/machine.xsl"?>
|
||||
<machine id="ka10test" type="pdp10" border="1" pos="center" background="#FAEBD7">
|
||||
<name pos="center">PDP-10 Test Machine with Debugger</name>
|
||||
<computer id="computer" busWidth="18"/>
|
||||
<cpu id="cpu" model="1001" cycles="1000000"/>
|
||||
<ram id="ram" addr="0x0000" size="0x4000"/>
|
||||
<device id="default" type="default"/>
|
||||
<serial id="serial" adapter="0" binding="print" upperCase="true"/>
|
||||
<panel ref="/devices/pdp10/panel/test/debugger/terminal.xml"/>
|
||||
<debugger id="debugger" base="8" messages="" commands=""/>
|
||||
</machine>
|
||||
11
devices/pdp10/machine/ka10/test/machine.xml
Normal file
11
devices/pdp10/machine/ka10/test/machine.xml
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?xml-stylesheet type="text/xsl" href="/versions/pdpjs/1.34.0/machine.xsl"?>
|
||||
<machine id="ka10test" type="pdp10" border="1" pos="center" background="#FAEBD7">
|
||||
<name pos="center">PDP-10 Test Machine</name>
|
||||
<computer id="computer" busWidth="18"/>
|
||||
<cpu id="cpu" model="1001" cycles="1000000"/>
|
||||
<ram id="ram" addr="0x0000" size="0x4000"/>
|
||||
<device id="default" type="default"/>
|
||||
<serial id="serial" adapter="0" binding="print" upperCase="true"/>
|
||||
<panel ref="/devices/pdp10/panel/test/debugger/terminal.xml"/>
|
||||
</machine>
|
||||
Loading…
Reference in a new issue