1
0
mirror of https://github.com/pkimpel/retro-220.git synced 2026-01-21 10:12:23 +00:00
pkimpel.retro-220/webUI/B220PaperTapePunch.html
Paul Kimpel df29455c91 Commit version 0.00d:
1. Implement console teletype printer and paper tape punch devices.
2. Correct timing mechanism and operation complete processing for asynchronous (I/O) processor mode.
3. Delete extraneous alarm toggles from B220Processor.
4. Correct Reset And Transfer switch so it will work when the Processor is running.
5. Implement Hello World default program for SPO at address 0020.
6. Change keyboard keystroke assignments for B220ConsoleKeyboard.
7. Implement Reset-to-Defaults feature for B220SystemConfig.
8. Implement DOM Element.classList for B220Util class attribute manipulation.
9. Minor typo correction to BALGOL-Generator.bacg.
2017-04-29 13:41:02 -07:00

58 lines
2.1 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>retro-220 Emulator Paper Tape Punch</title>
<!--
/***********************************************************************
* retro-220/webUI B220PaperTapePunch.html
************************************************************************
* Copyright (c) 2017, Paul Kimpel.
* Licensed under the MIT License, see
* http://www.opensource.org/licenses/mit-license.php
************************************************************************
* Burroughs 220 High-Speed Paper Tape Punch window.
************************************************************************
* 2017-04-28 P.Kimpel
* Original version, from retro-205/D205PaperTapePunch.html.
***********************************************************************/
-->
<meta name="Author" content="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="B220Common.css">
<link id=punchStyleSheet rel=stylesheet type="text/css" href="B220PaperTapePunch.css">
</head>
<body id=PunchBody class=deviceBody>
<div id=PaperTapePunch class=panelSurface>
<div id=RemoteSwitchOn class=caption>REMOTE</div>
<div id=RemoteSwitchOff class=caption>LOCAL</div>
<div id=ReadyLampCaption class=caption>READY</div>
<div id=UnitDesignateKnobCaption class=caption>UNIT DESIGNATE</div>
<select id=UnitDesignateKnob>
<option value= 0>SPO
<option value= 1>1
<option value= 2>2
<option value= 3>3
<option value= 4>4
<option value= 5>5
<option value= 6>6
<option value= 7>7
<option value= 8>8
<option value= 9>9
<option value=10>0
<option value=99>OFF
</select>
<div id=PunchTape>
<pre id=Paper class=paper title="Double-click to copy all text">&nbsp;</pre>
<div id=EndOfPaper>&nbsp;</div>
</div>
</div>
</body>
</html>