1
0
mirror of https://github.com/pkimpel/retro-b5500.git synced 2026-02-11 19:05:01 +00:00
Files
pkimpel.retro-b5500/webUI/B5500DatacomUnit.html
paul.kimpel@digm.com 2260803c51 Release emulator version 0.15:
1. Initial implementation of a datacom terminal.
2. Initial implementation (read-only) of magnetic tape drives.
3. Further work towards getting P2 to function (but not working yet).
4. Allow device driver classes to be optionally included in the global UI script.
5. Fix callback arguments handling in SetCallback.
6. Decrease width of SPO window slightly.
7. Improve trapping and printing of SPO keystrokes, based on datacom implementation.
8. Minor performance tuning improvements.
9. Dump raw header words in octal in tools/B5500DiskDirList.html script.
10. New wiki pages and several updates to existing ones.
2013-11-15 05:33:58 +00:00

43 lines
1.8 KiB
HTML

<!DOCTYPE html>
<head>
<title>B5500 Emulator Datacom Unit</title>
<meta name="Author" content="Nigel Williams & Paul Kimpel">
<!-- 2013-10-19 Original version, cloned from B5500SPOUnit.html -->
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<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="B5500DatacomUnit.css">
</head>
<body>
<div id=TermControlsDiv>
<button id=TermConnectBtn class="greenButton">Connect</button>
&nbsp;&nbsp;
<span id=NotReadyState class="annunciator">NR</span>&nbsp;&nbsp;
<span id=IdleState class="annunciator">IDLE</span>&nbsp;&nbsp;
<span id=ReadReadyState class="annunciator">RR</span>&nbsp;&nbsp;
<span id=WriteReadyState class="annunciator">WR</span>&nbsp;&nbsp;
<span id=InputBusyState class="annunciator">IBZ</span>&nbsp;&nbsp;
<span id=OutputBusyState class="annunciator">OBZ</span>&nbsp;&nbsp;
<span id=Abnormal class="annunciator">AB</span>&nbsp;&nbsp;
<span id=Interrupt class="annunciator">INT</span>&nbsp;&nbsp;
<span id=FullBuffer class="annunciator">FB</span>&nbsp;&nbsp;
Offset:
<span id=BufferOffset class="annunciator textLit">0</span>&nbsp;&nbsp;
Length:
<span id=BufferLength class="annunciator textLit">0</span>&nbsp;&nbsp;
Col:
<span id=PrintColumn class="annunciator textLit">0</span>&nbsp;&nbsp;
<!--
<br>Key:
<span id=CharCode class="annunciator textLit"></span>&nbsp;
<span id=KeyCode class="annunciator textLit"></span>
-->
</div>
<iframe id=TermOut scrolling=auto></iframe>
</body>
</html>