1
0
mirror of https://github.com/pkimpel/retro-b5500.git synced 2026-01-12 00:42:59 +00:00
pkimpel.retro-b5500/webUI/B5500CardReader.html

49 lines
2.0 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>B5500 Emulator Card Reader</title>
<!--
/***********************************************************************
* retro-b5500/emulator B5500CardReader.html
************************************************************************
* Copyright (c) 2012, Nigel Williams and Paul Kimpel.
* Licensed under the MIT License, see
* http://www.opensource.org/licenses/mit-license.php
************************************************************************
* B5500 Card Reader device page.
*
* Implements the B5500 card reader peripheral.
*
************************************************************************
* 2013-06-09 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=cardReaderStyleSheet rel=stylesheet type="text/css" href="B5500CardReader.css">
</head>
<body id=readerBody class=deviceBody>
<div id=CRDiv class=devicePanel>
<button id=CRNotReadyLight class="whiteButton whiteLit">NOT<br>READY</button>
<button id=CREOFBtn class="whiteButton">EOF</button>
<button id=CRStopBtn class="redButton">STOP</button>
<button id=CRStartBtn class="greenButton">START</button>
<button id=CRKeyinDeckBtn class="whiteButton whiteLit">KEY IN DECK</button>
<div id=CRStackerDiv>
<input id=CRFileSelector type=file size=60 multiple>
<label id=CRHopperCaption for=CRHopperBar>INPUT HOPPER</label>
<meter id=CRHopperBar min=0 max=100 value=0 title="Click to clear input hopper"></meter>
<iframe id=CROutHopperFrame class=paper scrolling=no src="./B5500FramePaper.html"></iframe>
</div>
</div>
</body>
</html>