Dual (connected) terminal configs should be working better, now that both transmitted and received data is clocked according to their respective baud rates

This commit is contained in:
Jeff Parsons 2016-08-17 15:42:02 -07:00
commit 9d289b54da
8 changed files with 218 additions and 209 deletions

View file

@ -14,7 +14,7 @@ Device Configurations
All PCjs machines are built from the following sets of devices:
* [6502-based Devices](c1p/) (e.g., [Challenger 1P](c1p/machine/))
* [8080-based Devices](pc8080/) (e.g., [Space Invaders](pc8080/machine/invaders/), [VT100](pc8080/machine/vt100/))
* [8080-based Devices](pc8080/) (e.g., [Space Invaders](pc8080/machine/invaders/), [VT100 Terminal](pc8080/machine/vt100/))
* [8086-based Devices](pcx86/) (e.g., [IBM PC and compatibles](pcx86/machine/))
These devices are user-installable components that you would typically find in a real personal computer,

View file

@ -10,7 +10,7 @@ PC8080 Machine Configurations
The following 8080-based machines are currently available:
* [8080 Exerciser](exerciser/)
* [Space Invaders (1978)](invaders/) (with [Debugger](invaders/debugger/))
* [DEC VT100 Terminal](vt100/) (with [Debugger](vt100/debugger/))
* [Space Invaders (1978)](invaders/) ([Debugger](invaders/debugger/))
* [DEC VT100 Terminal](vt100/) ([Debugger](vt100/debugger/))
Check out the [Dual VT100 Terminals](vt100/dual/) for a demo of two PCjs machines communicating over a *virtual* serial connection.

View file

@ -10,7 +10,7 @@ machines:
DEC VT100 Terminal
------------------
This is a PCjs work-in-progress emulation of another 8080-based machine: the VT100 Terminal.
This is a PCjs emulation of another 8080-based machine: the VT100 Terminal.
Unlike other VT100 emulators, it is not simply an emulation of VT100 protocols. It is a simulation of the original VT100
machine, running the [VT100 Firmware](/devices/pc8080/rom/vt100/) inside the [PC8080](/modules/pc8080/) CPU emulator.

View file

@ -7,14 +7,14 @@ machines:
type: pc8080
debugger: true
autoStart: true
messages: serial|mem|port
messages: mem|port
config: /devices/pc8080/machine/vt100/debugger/machine.xml
connection: serialPort=vt100b.serialPort
- id: vt100b
type: pc8080
debugger: true
autoStart: true
messages: serial|mem|port
messages: mem|port
config: /devices/pc8080/machine/vt100/debugger/machine.xml
connection: serialPort=vt100a.serialPort
---
@ -22,7 +22,7 @@ machines:
Dual VT100 Terminals with Debuggers
-----------------------------------
[Dual VT100 Terminals](../) with Debuggers attached.
Here are [Dual VT100 Terminals](../) with the PCjs Debugger attached to each.
{% include machine.html id="vt100a" %}