mirror of
https://github.com/pkimpel/retro-b5500.git
synced 2026-01-12 00:42:59 +00:00
79 lines
3.2 KiB
HTML
79 lines
3.2 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
|
<title>B5500 Emulator Datacom Unit</title>
|
|
<!--
|
|
/***********************************************************************
|
|
* retro-b5500/emulator B5500DatacomUnit.html
|
|
************************************************************************
|
|
* Copyright (c) 2013, Nigel Williams and Paul Kimpel.
|
|
* Licensed under the MIT License, see
|
|
* http://www.opensource.org/licenses/mit-license.php
|
|
************************************************************************
|
|
* B5500 DCHA/DTTU/terminal page.
|
|
*
|
|
* Implements the B5500 classic datacom subsystem and one terminal device
|
|
*
|
|
************************************************************************
|
|
* 2013-10-19 P.Kimpel
|
|
* Original version, from B5500SPOUnit.html
|
|
***********************************************************************/
|
|
-->
|
|
<meta name="Author" content="Nigel Williams & Paul Kimpel">
|
|
<meta http-equiv="Content-Script-Type" content="text/javascript">
|
|
<meta http-equiv="Content-Style-Type" content="text/css">
|
|
<link id=defaultStyleSheet rel=stylesheet type="text/css" href="B5500Common.css">
|
|
<link id=datacomStyleSheet rel=stylesheet type="text/css" href="B5500DatacomUnit.css">
|
|
</head>
|
|
|
|
<body id=DatacomUnit>
|
|
|
|
<div id=TermControlsDiv>
|
|
<button id=TermConnectBtn class="greenButton blackBorder">Connect</button>
|
|
|
|
<span id=NotReadyState class="annunciator" title="Not-Ready State"
|
|
>NR</span>
|
|
<span id=IdleState class="annunciator" title="Idle State"
|
|
>IDLE</span>
|
|
<span id=ReadReadyState class="annunciator" title="Read-Ready State"
|
|
>RR</span>
|
|
<span id=WriteReadyState class="annunciator" title="Write-Ready State"
|
|
>WR</span>
|
|
<span id=InputBusyState class="annunciator" title="Input-Busy State"
|
|
>IBZ</span>
|
|
<span id=OutputBusyState class="annunciator" title="Output-Busy State"
|
|
>OBZ</span>
|
|
<span id=Abnormal class="annunciator" title="Abnormal Condition"
|
|
>AB</span>
|
|
<span id=Interrupt class="annunciator" title="DCHA Interrupt Pending"
|
|
>INT</span>
|
|
<span id=FullBuffer class="annunciator" title="Buffer is Full"
|
|
>FB</span>
|
|
|
|
Offset:
|
|
<span id=BufferOffset class="annunciator textLit" title="Current buffer offset"
|
|
>0</span>
|
|
Length:
|
|
<span id=BufferLength class="annunciator textLit" title="Current buffer length"
|
|
>0</span>
|
|
Col:
|
|
<span id=PrintColumn class="annunciator textLit" title="Current print column"
|
|
>0</span>
|
|
<!--
|
|
<br>Key:
|
|
<span id=CharCode class="annunciator textLit" title="Event charCode"
|
|
></span>
|
|
<span id=KeyCode class="annunciator textLit" title="Event keyCode"
|
|
></span>
|
|
-->
|
|
</div>
|
|
|
|
<div id=TermOut scrolling=auto src="./B5500BlankPaper.html">
|
|
<pre id=Paper class=paper title="Double-click to copy all text"> </pre>
|
|
<input id=InputBox type=text size=72 maxlength=72>
|
|
<div id=EndOfPaper> </div>
|
|
</div>
|
|
|
|
</body>
|
|
</html> |