Supoprt for tape images in the Absolute Loader format has been moved to the RAM component, so that those images can be preloaded into RAM in the same way that raw bootstrap images can; the RAM component now provides Absolute Loader image parsing as a service to other components that need it (specifically, the PC11 tape reader)
This commit is contained in:
parent
69b7a682d8
commit
13a1dedbc7
21 changed files with 800 additions and 693 deletions
|
|
@ -7,7 +7,8 @@ permalink: /devices/pdp11/machine/1120/
|
|||
PDP-11/20 Machine Configurations
|
||||
--------------------------------
|
||||
|
||||
PCjs is adding support the following PDP-11/20 configurations:
|
||||
PDPjs is currently being tested with the following PDP-11/20 machine configurations:
|
||||
|
||||
* [PDP-11/20 Test Machine](/devices/pdp11/machine/1120/test/) ([Debugger](/devices/pdp11/machine/1120/test/debugger/))
|
||||
* [PDP-11/20 with 16Kb and Bootstrap Loader](/devices/pdp11/machine/1120/bootstrap/) ([Debugger](/devices/pdp11/machine/1120/bootstrap/debugger/))
|
||||
* [PDP-11/20 with 16Kb and DEC BASIC](/devices/pdp11/machine/1120/basic/) ([Debugger](/devices/pdp11/machine/1120/basic/debugger/))
|
||||
|
|
|
|||
11
devices/pdp11/machine/1120/basic/README.md
Normal file
11
devices/pdp11/machine/1120/basic/README.md
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
---
|
||||
layout: page
|
||||
title: PDP-11/20 with 16Kb, DEC BASIC
|
||||
permalink: /devices/pdp11/machine/1120/basic/
|
||||
machines:
|
||||
- id: test1120
|
||||
type: pdp11
|
||||
autoMount: ''
|
||||
---
|
||||
|
||||
{% include machine.html id="test1120" %}
|
||||
12
devices/pdp11/machine/1120/basic/debugger/README.md
Normal file
12
devices/pdp11/machine/1120/basic/debugger/README.md
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
---
|
||||
layout: page
|
||||
title: PDP-11/20 with 16Kb, DEC BASIC, and Debugger
|
||||
permalink: /devices/pdp11/machine/1120/basic/debugger/
|
||||
machines:
|
||||
- id: test1120
|
||||
type: pdp11
|
||||
debugger: true
|
||||
autoMount: ''
|
||||
---
|
||||
|
||||
{% include machine.html id="test1120" %}
|
||||
13
devices/pdp11/machine/1120/basic/debugger/machine.xml
Normal file
13
devices/pdp11/machine/1120/basic/debugger/machine.xml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?xml-stylesheet type="text/xsl" href="/versions/pdpjs/1.30.1/machine.xsl"?>
|
||||
<machine id="test1120" class="pdp11" border="1" pos="center" background="#FAEBD7">
|
||||
<name pos="center">PDP-11/20: 16Kb, DEC BASIC, Debugger</name>
|
||||
<computer id="computer" busWidth="16"/>
|
||||
<cpu id="cpu" model="1120" cycles="6666667"/>
|
||||
<ram id="ram" addr="0x0000" size="0x4000" file="/apps/pdp11/tapes/DEC-11-AJPB-PB.json"/>
|
||||
<device id="default" type="default"/>
|
||||
<serial id="dl11" adapter="0" binding="print"/>
|
||||
<panel ref="/devices/pdp11/panel/test/debugger/terminal.xml"/>
|
||||
<debugger id="debugger" base="8" messages="" commands=""/>
|
||||
<device ref="/apps/pdp11/tapes/demo.xml"/>
|
||||
</machine>
|
||||
12
devices/pdp11/machine/1120/basic/machine.xml
Normal file
12
devices/pdp11/machine/1120/basic/machine.xml
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?xml-stylesheet type="text/xsl" href="/versions/pdpjs/1.30.1/machine.xsl"?>
|
||||
<machine id="test1120" class="pdp11" border="1" pos="center" background="#FAEBD7">
|
||||
<name pos="center">PDP-11/20: 16Kb, DEC BASIC</name>
|
||||
<computer id="computer" busWidth="16"/>
|
||||
<cpu id="cpu" model="1120" cycles="6666667"/>
|
||||
<ram id="ram" addr="0x0000" size="0x4000" file="/apps/pdp11/tapes/DEC-11-AJPB-PB.json"/>
|
||||
<device id="default" type="default"/>
|
||||
<serial id="dl11" adapter="0" binding="print"/>
|
||||
<panel ref="/devices/pdp11/panel/test/terminal.xml"/>
|
||||
<device ref="/apps/pdp11/tapes/demo.xml"/>
|
||||
</machine>
|
||||
|
|
@ -7,7 +7,7 @@ permalink: /devices/pdp11/machine/1170/
|
|||
PDP-11/70 Machine Configurations
|
||||
--------------------------------
|
||||
|
||||
PCjs is adding support the following PDP-11/70 configurations:
|
||||
PDPjs is currently being tested with the following PDP-11/70 machine configurations:
|
||||
|
||||
* [PDP-11/70 Test Machine](/devices/pdp11/machine/1170/test/) ([Debugger](/devices/pdp11/machine/1170/test/debugger/))
|
||||
* [PDP-11/70 with Front Panel](/devices/pdp11/machine/1170/panel) ([Debugger](/devices/pdp11/machine/1170/panel/debugger/))
|
||||
|
|
|
|||
Loading…
Reference in a new issue