More XML layout tweaks

This commit is contained in:
Jeff Parsons 2016-10-19 17:16:42 -07:00 committed by Jeff Parsons
commit d83bfcda4c
8 changed files with 38 additions and 12 deletions

View file

@ -7,15 +7,11 @@ permalink: /devices/pdp11/
PDP-11 Device Configurations
----------------------------
[PDP-11 Machines](/devices/pdp11/machine/) powered by [PDPjs](/modules/pdp11/) rely on a variety of devices, including:
[PDP-11 Machines](/devices/pdp11/machine/) rely on a variety of machine configuration files, including:
- [Control Panels](panel/)
- [Serial Interface for Display Terminals (DL11)](dl11/)
- [High-Speed Paper Tape Reader/Punch (PC11)](pc11/)
Machines are built from a variety of device configuration files, including:
* [Machines](machine/)
* [Panels](panel/)
Our collection of sample machines includes a
Sample machines include a
[PDP-11/70 with Front Panel](/devices/pdp11/machine/1170/panel/) and [PDP-11/70 with VT100 Terminal](/devices/pdp11/machine/1170/vt100/).

View file

@ -7,4 +7,18 @@ permalink: /devices/pdp11/dl11/
DL11 Serial Interface for Display Terminals
-------------------------------------------
PDPjs implements the DL11 component in [serialport.js](/modules/pdp11/lib/serialport.js).
PDPjs implements the DL11 component in [SerialPortPDP11](/modules/pdp11/lib/serialport.js).
This component is typically instantiated by a Machine XML file using:
<serial id="dl11" adapter="0" binding="print"/>
Most of our PDP-11 machines specify *binding="print"* to connect the DL11 to a `<textarea>` that serves as the machine's
display terminal.
However, some machines, such as the [PDP-11/70 with VT100 Terminal](/devices/pdp11/machine/1170/vt100/), connect the DL11
to a separate machine (eg, a [VT100 Terminal](/devices/pc8080/machine/vt100/)), using the PDP-11 machine's *connection* property.
Refer to the *initConnection()* function in the [SerialPortPDP11](/modules/pdp11/lib/serialport.js),
[SerialPort8080](/modules/pc8080/lib/serialport.js), and [SerialPort for PCx86](/modules/pcx86/lib/serialport.js)
components.

View file

@ -7,7 +7,7 @@ permalink: /devices/pdp11/machine/
PDP-11 Machine Configurations
-----------------------------
[PDPjs](/modules/pdp11/), our PDP-11 emulation module, will support the following PDP-11 machines:
[PDPjs](/modules/pdp11/), our PDP-11 emulation module, supports the following PDP-11 machines:
* [PDP-11/20](/devices/pdp11/machine/1120/)
* PDP-11/45

View file

@ -27,7 +27,7 @@
<control type="flag" label="C" binding="CF" width="8px" padRight="4px" padBottom="8px">0</control>
</control>
</control>
<control type="container" padLeft="8px" padBottom="8px">
<control type="container" width="35%" padLeft="8px" padBottom="8px">
<control type="button" binding="run">Run</control>
<control type="button" binding="step">Step</control>
<control type="button" binding="reset">Reset</control>

View file

@ -4,7 +4,7 @@
<control type="container" class="pcjs-textarea" width="60%" padBottom="8px">
<control type="textarea" binding="print" width="100%" height="300px" padRight="8px" pos="relative" style="resize:vertical;"/>
</control>
<control type="container" padLeft="8px" padBottom="8px">
<control type="container" width="35%" padLeft="8px" padBottom="8px">
<control type="button" binding="run">Run</control>
<control type="button" binding="reset">Reset</control>
<control type="button" binding="setSpeed">Fast</control>

View file

@ -8,3 +8,16 @@ PC11 High-Speed Paper Tape Reader/Punch
---------------------------------------
PDPjs implements the PC11 component in [pc11.js](/modules/pdp11/lib/pc11.js).
Paper Tape configurations include:
- [Demo](demo.xml)
which are typically instantiated by a Machine XML file using:
<device ref="/devices/pdp11/pc11/demo.xml"/>
The above configurations are used by machines such as:
- [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

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<device id="pc11" type="pc11" autoMount='{path:"/apps/pdp11/tapes/DEC-11-L2PC-PO.json"}' pos="left" padLeft="8px" padBottom="8px">
<name>Paper Tape Controls</name>
<control type="container" width="300px" name="Paper Tape Controls">
<control type="container" width="300px">
<control type="list" binding="listTapes">
<tape id="tape00" name="Bootstrap Loader (16Kb)" path="/apps/pdp11/boot/bootstrap/BOOTSTRAP-16KB.json"/>
<tape id="tape01" name="Absolute Loader" path="/apps/pdp11/tapes/DEC-11-L2PC-PO.json"/>

View file

@ -199,4 +199,7 @@
.pcjs-registers {
width: 100% !important;
}
.pcjs-device {
width: 100% !important;
}
}