mirror of
https://github.com/pkimpel/retro-b5500.git
synced 2026-01-12 00:42:59 +00:00
56 lines
2.4 KiB
HTML
56 lines
2.4 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
|
<title>B5500 Emulator Line Printer</title>
|
|
<!--
|
|
/***********************************************************************
|
|
* retro-b5500/emulator B5500LinePrinter.html
|
|
************************************************************************
|
|
* Copyright (c) 2014, Nigel Williams and Paul Kimpel.
|
|
* Licensed under the MIT License, see
|
|
* http://www.opensource.org/licenses/mit-license.php
|
|
************************************************************************
|
|
* B5500 Line Printer device page.
|
|
*
|
|
* Implements a line printer device and user interface for the
|
|
* B5500 emulator.
|
|
************************************************************************
|
|
* 2014-08-31 P.Kimpel
|
|
* Original version, cloned from B5500DummyPrinter.html and
|
|
* B5500CardPunch.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=printerStyleSheet rel=stylesheet type="text/css" href="B5500LinePrinter.css">
|
|
</head>
|
|
|
|
<body id=printerBody class=deviceBody>
|
|
|
|
<div id=LPDiv class=devicePanel>
|
|
<button id=LPNotReadyLight class="whiteButton whiteLit">NOT<br>READY</button>
|
|
<button id=LPEndOfPaperBtn class="whiteButton">END OF<br>PAPER</button>
|
|
<button id=LPFormFeedBtn class="blackButton blackLit">SKIP<br>TO<br>HEADING</button>
|
|
<button id=LPSpaceBtn class="blackButton blackLit">SPACE</button>
|
|
<button id=LPStopBtn class="redButton">STOP</button>
|
|
<button id=LPStartBtn class="greenButton">START</button>
|
|
|
|
<div id=LPOptionsDiv>
|
|
<input id=LPGreenbarCheck type=checkbox value=1 checked>
|
|
<label for=LPGreenbarCheck class="annunciator annunciatorLit">GREENBAR</label>
|
|
|
|
<input id=LPAlgolGlyphsCheck type=checkbox value=1 checked>
|
|
<label for=LPAlgolGlyphsCheck class="annunciator annunciatorLit">ALGOL GLYPHS</label>
|
|
</div>
|
|
|
|
<meter id=LPPaperMeter min=0 max=100 low=10 value=100></meter>
|
|
<label id=LPPaperMeterCaption for=LPPaperMeter>PAPER REMAINING</label>
|
|
|
|
<iframe id=LPPaperFrame class=paper scrolling=auto src="./B5500FramePaper.html"></iframe>
|
|
</div>
|
|
|
|
</body>
|
|
</html> |