Dual VT100 bi-directional communication is now limping along
This commit is contained in:
parent
cf24023d5d
commit
81239cdbbe
8 changed files with 449 additions and 367 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
---
|
||||
|
||||
|
|
|
|||
|
|
@ -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"/>
|
||||
|
|
|
|||
21
devices/pc8080/machine/vt100/dual/README.md
Normal file
21
devices/pc8080/machine/vt100/dual/README.md
Normal 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" %}
|
||||
|
|
@ -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>
|
||||
|
|
|
|||
Loading…
Reference in a new issue