Dual VT100 bi-directional communication is now limping along

This commit is contained in:
Jeff Parsons 2016-08-16 11:34:11 -07:00
commit 81239cdbbe
8 changed files with 449 additions and 367 deletions

View file

@ -3,9 +3,8 @@ layout: page
title: DEC VT100 Terminal
permalink: /devices/pc8080/machine/vt100/
machines:
- type: pc8080
id: vt100
debugger: true
- id: vt100
type: pc8080
---
DEC VT100 Terminal

View file

@ -3,8 +3,8 @@ layout: page
title: DEC VT100 Terminal with Debugger
permalink: /devices/pc8080/machine/vt100/debugger/
machines:
- type: pc8080
id: vt100
- id: vt100
type: pc8080
debugger: true
---

View file

@ -27,7 +27,7 @@
<keyboard id="keyboard" model="VT100">
<control type="button" binding="setup" padleft="8px">SET-UP</control>
</keyboard>
<serial id="serial0" adapter="0" binding="print">
<serial id="serialPort" adapter="0" binding="print">
<control type="button" binding="test" value="HELLO WORLD!\r\n" padleft="8px">TEST RECEIVER</control>
</serial>
<panel ref="/devices/pc8080/panel/wide.xml"/>

View file

@ -0,0 +1,21 @@
---
layout: page
title: Dual VT100 Terminals
permalink: /devices/pc8080/machine/vt100/dual/
machines:
- id: vt100a
type: pc8080
config: /devices/pc8080/machine/vt100/machine.xml
connection: serialPort=vt100b.serialPort
- id: vt100b
type: pc8080
config: /devices/pc8080/machine/vt100/machine.xml
connection: serialPort=vt100a.serialPort
---
Dual VT100 Terminals
--------------------
{% include machine.html id="vt100a" %}
{% include machine.html id="vt100b" %}

View file

@ -27,7 +27,7 @@
<keyboard id="keyboard" model="VT100">
<control type="button" binding="setup" padleft="8px" padbottom="8px">SET-UP</control>
</keyboard>
<serial id="serial0" adapter="0">
<serial id="serialPort" adapter="0">
<control type="button" binding="test" value="HELLO WORLD!\r\n" padleft="8px" padbottom="8px">TEST RECEIVER</control>
</serial>
</machine>