Added a few PDP-11/45 configurations
This commit is contained in:
parent
f8bc528de3
commit
399e1d06a7
25 changed files with 768 additions and 14 deletions
17
devices/pdp11/machine/1145/README.md
Normal file
17
devices/pdp11/machine/1145/README.md
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
---
|
||||
layout: page
|
||||
title: PDP-11/45 Machine Configurations
|
||||
permalink: /devices/pdp11/machine/1145/
|
||||
---
|
||||
|
||||
PDP-11/45 Machine Configurations
|
||||
--------------------------------
|
||||
|
||||
PDPjs supports a variety of PDP-11/45 machine configurations, including:
|
||||
|
||||
* [PDP-11/45 with Front Panel](/devices/pdp11/machine/1145/panel/) (with [Debugger](/devices/pdp11/machine/1145/panel/debugger/))
|
||||
* [PDP-11/45 with VT100 Terminal](/devices/pdp11/machine/1145/vt100/) (with [Debugger](/devices/pdp11/machine/1145/vt100/debugger/))
|
||||
|
||||
All of the above configurations include 248Kb of RAM -- the maximum supported by the PDP-11/45 architecture.
|
||||
The top 8Kb of the PDP-11/45's 18-bit address space is occupied by the *I/O Page*, a region reserved for hardware
|
||||
registers belonging to the CPU, MMU, and assorted peripherals.
|
||||
16
devices/pdp11/machine/1145/panel/README.md
Normal file
16
devices/pdp11/machine/1145/panel/README.md
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
---
|
||||
layout: page
|
||||
title: PDP-11/45 with 256Kb and Front Panel
|
||||
permalink: /devices/pdp11/machine/1145/panel/
|
||||
machines:
|
||||
- id: test1145
|
||||
type: pdp11
|
||||
---
|
||||
|
||||
{% include machine.html id="test1145" %}
|
||||
|
||||
This machine is also available with our built-in [Debugger](debugger/).
|
||||
|
||||
Other interesting things to know about this machine:
|
||||
|
||||
* It includes an [M9312 ROM](/devices/pdp11/rom/M9312/) at address 165000. The exact ROM is [23-616F1](/devices/pdp11/rom/M9312/23-616F1.txt).
|
||||
15
devices/pdp11/machine/1145/panel/debugger/README.md
Normal file
15
devices/pdp11/machine/1145/panel/debugger/README.md
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
---
|
||||
layout: page
|
||||
title: PDP-11/45 with 256Kb, Front Panel, and Debugger
|
||||
permalink: /devices/pdp11/machine/1145/panel/debugger/
|
||||
machines:
|
||||
- id: test1145
|
||||
type: pdp11
|
||||
debugger: true
|
||||
---
|
||||
|
||||
{% include machine.html id="test1145" %}
|
||||
|
||||
Other interesting things to know about this machine:
|
||||
|
||||
* It includes an [M9312 ROM](/devices/pdp11/rom/M9312/) at address 165000. The exact ROM is [23-616F1](/devices/pdp11/rom/M9312/23-616F1.txt).
|
||||
16
devices/pdp11/machine/1145/panel/debugger/machine.xml
Normal file
16
devices/pdp11/machine/1145/panel/debugger/machine.xml
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?xml-stylesheet type="text/xsl" href="/versions/pdpjs/1.30.5/machine.xsl"?>
|
||||
<machine id="test1145" class="pdp11" border="1" pos="center" background="#FAEBD7">
|
||||
<name pos="center">PDP-11/45 with 256Kb, Front Panel and Debugger</name>
|
||||
<computer id="computer" busWidth="18"/>
|
||||
<cpu id="cpu" model="1145" cycles="6666667"/>
|
||||
<ram id="ram" addr="0x00000" size="0x3E000" file="/apps/pdp11/boot/monitor/BOOTMON.json"/>
|
||||
<rom id="m9312" addr="0xEA00" size="0x200" file="/devices/pdp11/rom/M9312/23-616F1.json"/>
|
||||
<device id="default" type="default"/>
|
||||
<serial id="dl11" adapter="0" binding="print"/>
|
||||
<panel ref="/devices/pdp11/panel/1145/debugger/front.xml"/>
|
||||
<debugger id="debugger" base="8" messages="" commands=""/>
|
||||
<device ref="/devices/pdp11/pc11/default.xml"/>
|
||||
<device ref="/devices/pdp11/rk11/default.xml"/>
|
||||
<device ref="/devices/pdp11/rl11/default.xml"/>
|
||||
</machine>
|
||||
15
devices/pdp11/machine/1145/panel/machine.xml
Normal file
15
devices/pdp11/machine/1145/panel/machine.xml
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?xml-stylesheet type="text/xsl" href="/versions/pdpjs/1.30.5/machine.xsl"?>
|
||||
<machine id="test1145" class="pdp11" border="1" pos="center" background="#FAEBD7">
|
||||
<name pos="center">PDP-11/45 with 256Kb and Front Panel</name>
|
||||
<computer id="computer" busWidth="18"/>
|
||||
<cpu id="cpu" model="1145" cycles="6666667" autoStart="true"/>
|
||||
<ram id="ram" addr="0x00000" size="0x3E000" file="/apps/pdp11/boot/monitor/BOOTMON.json"/>
|
||||
<rom id="m9312" addr="0xEA00" size="0x200" file="/devices/pdp11/rom/M9312/23-616F1.json"/>
|
||||
<device id="default" type="default"/>
|
||||
<serial id="dl11" adapter="0" binding="print"/>
|
||||
<panel ref="/devices/pdp11/panel/1145/front.xml"/>
|
||||
<device ref="/devices/pdp11/pc11/default.xml"/>
|
||||
<device ref="/devices/pdp11/rk11/default.xml"/>
|
||||
<device ref="/devices/pdp11/rl11/default.xml"/>
|
||||
</machine>
|
||||
20
devices/pdp11/machine/1145/vt100/README.md
Normal file
20
devices/pdp11/machine/1145/vt100/README.md
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
---
|
||||
layout: page
|
||||
title: PDP-11/45 with VT100 Terminal
|
||||
permalink: /devices/pdp11/machine/1145/vt100/
|
||||
machines:
|
||||
- id: test1145
|
||||
type: pdp11
|
||||
config: /devices/pdp11/machine/1145/vt100/machine.xml
|
||||
connection: dl11->vt100.serialPort
|
||||
- id: vt100
|
||||
type: pc8080
|
||||
config: /devices/pc8080/machine/vt100/machine.xml
|
||||
connection: serialPort->test1145.dl11
|
||||
---
|
||||
|
||||
{% include machine.html id="test1145" %}
|
||||
|
||||
This PDP-11/45 is also available with our built-in [Debugger](debugger/).
|
||||
|
||||
{% include machine.html id="vt100" %}
|
||||
20
devices/pdp11/machine/1145/vt100/debugger/README.md
Normal file
20
devices/pdp11/machine/1145/vt100/debugger/README.md
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
---
|
||||
layout: page
|
||||
title: PDP-11/45 with VT100 Terminal and Debugger
|
||||
permalink: /devices/pdp11/machine/1145/vt100/debugger/
|
||||
machines:
|
||||
- id: test1145
|
||||
type: pdp11
|
||||
debugger: true
|
||||
config: /devices/pdp11/machine/1145/vt100/debugger/machine.xml
|
||||
connection: dl11->vt100.serialPort
|
||||
- id: vt100
|
||||
type: pc8080
|
||||
debugger: true
|
||||
config: /devices/pc8080/machine/vt100/debugger/machine.xml
|
||||
connection: serialPort->test1145.dl11
|
||||
---
|
||||
|
||||
{% include machine.html id="test1145" %}
|
||||
|
||||
{% include machine.html id="vt100" %}
|
||||
15
devices/pdp11/machine/1145/vt100/debugger/machine.xml
Normal file
15
devices/pdp11/machine/1145/vt100/debugger/machine.xml
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?xml-stylesheet type="text/xsl" href="/versions/pdpjs/1.30.5/machine.xsl"?>
|
||||
<machine id="test1145" class="pdp11" border="1" pos="center" background="#FAEBD7">
|
||||
<name pos="center">PDP-11/45 with 256Kb, Front Panel, and Debugger</name>
|
||||
<computer id="computer" busWidth="18"/>
|
||||
<cpu id="cpu" model="1145" cycles="6666667" autoStart="true"/>
|
||||
<ram id="ram" addr="0x00000" size="0x3E000" file="/apps/pdp11/boot/monitor/BOOTMON.json"/>
|
||||
<device id="default" type="default"/>
|
||||
<serial id="dl11" adapter="0"/>
|
||||
<panel ref="/devices/pdp11/panel/1145/debugger/front.xml"/>
|
||||
<debugger id="debugger" base="8" messages="" commands=""/>
|
||||
<device ref="/devices/pdp11/pc11/default.xml"/>
|
||||
<device ref="/devices/pdp11/rk11/default.xml"/>
|
||||
<device ref="/devices/pdp11/rl11/default.xml"/>
|
||||
</machine>
|
||||
14
devices/pdp11/machine/1145/vt100/machine.xml
Normal file
14
devices/pdp11/machine/1145/vt100/machine.xml
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?xml-stylesheet type="text/xsl" href="/versions/pdpjs/1.30.5/machine.xsl"?>
|
||||
<machine id="test1145" class="pdp11" border="1" pos="center" background="#FAEBD7">
|
||||
<name pos="center">PDP-11/45 with 256Kb and Front Panel</name>
|
||||
<computer id="computer" busWidth="18"/>
|
||||
<cpu id="cpu" model="1145" cycles="6666667" autoStart="true"/>
|
||||
<ram id="ram" addr="0x00000" size="0x3E000" file="/apps/pdp11/boot/monitor/BOOTMON.json"/>
|
||||
<device id="default" type="default"/>
|
||||
<serial id="dl11" adapter="0"/>
|
||||
<panel ref="/devices/pdp11/panel/1145/front.xml"/>
|
||||
<device ref="/devices/pdp11/pc11/default.xml"/>
|
||||
<device ref="/devices/pdp11/rk11/default.xml"/>
|
||||
<device ref="/devices/pdp11/rl11/default.xml"/>
|
||||
</machine>
|
||||
Loading…
Reference in a new issue