1
0
mirror of https://github.com/pkimpel/retro-b5500.git synced 2026-02-12 03:07:30 +00:00
Files
pkimpel.retro-b5500/webUI/B5500MagTapeDrive.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

35 lines
1.4 KiB
HTML

<!DOCTYPE html>
<head>
<title>B5500 Emulator Magnetic Tape Drive</title>
<meta name="Author" content="Nigel Williams & Paul Kimpel">
<!-- 2013-10-26 Original version, cloned from B5500CardReader.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="B5500MagTapeDrive.css">
</head>
<body>
<div id=MTDiv>
<button id=MTUnloadBtn class="blackButton">UNLOAD</button>
<button id=MTLoadBtn class="blackButton">LOAD</button>
<button id=MTLocalBtn class="yellowButton">LOCAL</button>
<button id=MTRemoteBtn class="yellowButton">REMOTE</button>
<button id=MTWriteRingBtn class="redButton">WRITE RING</button>
<button id=MTRewindBtn class="blackButton">REWIND</button>
<img id=MTReel src="MagTapeReel.jpg">
<span id=MTUnloadedLight class=annunciator>UNLOADED</span>
<span id=MTAtBOTLight class=annunciator>AT BOT</span>
<span id=MTAtEOTLight class=annunciator>AT EOT</span>
<span id=MTRewindingLight class=annunciator>REWINDING</span>
<input id=MTFileSelector type=file size=60>
<progress id=MTProgressBar min=0 max=100 value=0 title="Click to clear input hopper"></progress>
</div>
</body>
</html>