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:
Jeff Parsons 2016-10-19 11:10:38 -07:00 committed by Jeff Parsons
commit 13a1dedbc7
21 changed files with 800 additions and 693 deletions

View file

@ -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/))

View 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" %}

View 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" %}

View 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>

View 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>

View file

@ -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/))