1
0
mirror of https://github.com/pkimpel/retro-b5500.git synced 2026-02-13 11:44:33 +00:00
Files
pkimpel.retro-b5500/webUI/B5500LinePrinter.html
Paul Kimpel f1fe18dab3 Commit release 1.02:
1. Move project from Google Code to GitHub (https://github.com/pkimpel/retro-b5500/). Update links and help pages; convert wiki pages to GitHub's MarkDown format.
2. Implement emulator-hosted memory dump to a tape image that can be saved and input into the B5500 DUMP/ANALYZE utility for analysis. Activated by clicking the NOT READY button on the Console.
3. Fix bad assignments to Processor X register in arithmetic ops (affected only SyllableDebugger script).
4. Remove IndexedDB.openDatabase() version parameter so the B5500ColdLoader and tools/ scripts will work in non-Firefox browsers.
5. Add a "?db" query string parameter to the tools/scripts so these scripts can open disk subsystems other than B5500DiskUnit.
6. Correct pre-allocated file locations and ESU card in tools/COLDSTART-XIII.card.
7. Implement new double-click mechanism to copy and clear the contents of card punch, datacom terminal, and line-printer output areas to a temporary window for subsequent copying or saving.
8. Correct handling of Ctrl-B (break), Ctrl-D (disconnect request), Ctrl-E (WRU), Ctrl-L (clear input buffer), and Ctrl-Q (alternate end-of-message) in B5500DatacomUnit.
9. Implement reporting of Model IB (slow, bulk) disk in B5500DiskUnit readInterrogate.
10. Implement detection of browser IndexedDB quota-exceeded errors in B5500DiskUnit (primarily to handle the fixed 2GB limit for off-line storage in Firefox).
11. Correct problem when line printer exhausted paper and FORM FEED triple-click did not clear the condition.
12. Eliminate BOT marker sensed in result for tape drive Write Interrogate operation -- Mark XIII and XV MCPs treat this as an error and will not purge blank tapes because of it.
13. Fix double-click of SPO INPUT REQUEST button either sending a duplicate interrupt to the system or the second click moving focus from the SPO input box.
14. Further tuning of delay-deviation adjustment mechanism in B5500SetCallback.js.
15. Reinstate ability of SPO to wrap long outputs to additional lines (apparently lost with new SPO input mechanism in 1.00).
16. Commit preliminary COOLSTART-XIII.card and MCPTAPEDISK-XIII.card decks.
2015-06-14 19:06:27 -07:00

56 lines
2.5 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>
&nbsp;&nbsp;
<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>