1
0
mirror of https://github.com/pkimpel/retro-b5500.git synced 2026-01-12 00:42:59 +00:00
pkimpel.retro-b5500/webUI/B5500DatacomUnit.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>
&nbsp;&nbsp;
<span id=NotReadyState class="annunciator" title="Not-Ready State"
>NR</span>&nbsp;&nbsp;
<span id=IdleState class="annunciator" title="Idle State"
>IDLE</span>&nbsp;&nbsp;
<span id=ReadReadyState class="annunciator" title="Read-Ready State"
>RR</span>&nbsp;&nbsp;
<span id=WriteReadyState class="annunciator" title="Write-Ready State"
>WR</span>&nbsp;&nbsp;
<span id=InputBusyState class="annunciator" title="Input-Busy State"
>IBZ</span>&nbsp;&nbsp;
<span id=OutputBusyState class="annunciator" title="Output-Busy State"
>OBZ</span>&nbsp;&nbsp;
<span id=Abnormal class="annunciator" title="Abnormal Condition"
>AB</span>&nbsp;&nbsp;
<span id=Interrupt class="annunciator" title="DCHA Interrupt Pending"
>INT</span>&nbsp;&nbsp;
<span id=FullBuffer class="annunciator" title="Buffer is Full"
>FB</span>&nbsp;&nbsp;
Offset:
<span id=BufferOffset class="annunciator textLit" title="Current buffer offset"
>0</span>&nbsp;&nbsp;
Length:
<span id=BufferLength class="annunciator textLit" title="Current buffer length"
>0</span>&nbsp;&nbsp;
Col:
<span id=PrintColumn class="annunciator textLit" title="Current print column"
>0</span>&nbsp;&nbsp;
<!--
<br>Key:
<span id=CharCode class="annunciator textLit" title="Event charCode"
></span>&nbsp;
<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">&nbsp;</pre>
<input id=InputBox type=text size=72 maxlength=72>
<div id=EndOfPaper>&nbsp;</div>
</div>
</body>
</html>