mirror of
https://github.com/pkimpel/retro-b5500.git
synced 2026-01-12 00:42:59 +00:00
55 lines
2.3 KiB
HTML
55 lines
2.3 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
|
<title>B5500 Emulator Magnetic Tape Drive</title>
|
|
<!--
|
|
/***********************************************************************
|
|
* retro-b5500/emulator B5500MagTapeDrive.html
|
|
************************************************************************
|
|
* Copyright (c) 2013, Nigel Williams and Paul Kimpel.
|
|
* Licensed under the MIT License, see
|
|
* http://www.opensource.org/licenses/mit-license.php
|
|
************************************************************************
|
|
* B5500 Magnetic Tape Drive device page.
|
|
*
|
|
* Implements the B5500 magnetic tape drive peripheral.
|
|
*
|
|
************************************************************************
|
|
* 2013-10-26 P.Kimpel
|
|
* Original version, from B5500CardReader.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=tapeDriveStyleSheet rel=stylesheet type="text/css" href="B5500MagTapeDrive.css">
|
|
</head>
|
|
|
|
<body id=magTapeBody class=deviceBody>
|
|
|
|
<div id=MTDiv class=devicePanel>
|
|
<button id=MTUnloadBtn class="blackButton blackLit">UNLOAD</button>
|
|
<button id=MTLoadBtn class="blackButton blackLit">LOAD</button>
|
|
<button id=MTLocalBtn class="yellowButton">LOCAL</button>
|
|
<button id=MTRemoteBtn class="yellowButton">REMOTE</button>
|
|
<button id=MTWriteRingBtn class="redButton">WRITE<br>RING</button>
|
|
<button id=MTRewindBtn class="blackButton blackLit">REWIND</button>
|
|
|
|
<img id=MTReel src="./resources/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>
|
|
|
|
<div id=MTStatusDiv>
|
|
<input id=MTFileName type=text READONLY>
|
|
<meter id=MTReelBar min=0 max=100 value=0 title="Tape remaining on supply reel"></meter>
|
|
<label id=MTReelBarCaption for=MTReelBar>SUPPLY REEL</label>
|
|
</div>
|
|
</div>
|
|
|
|
</body>
|
|
</html> |