mirror of
https://github.com/pkimpel/retro-220.git
synced 2026-01-13 07:10:08 +00:00
1. Minor improvements to magnetic tape implementation and rearrangement of code. 2. Correct Processor CAD/CAA/CSU/CSA operation for operand signs other than 0 or 1. 3. Correct Processor LDB to load only the low-order four digits of the operand into B. 4. Correct Processor SLS shift count; improve mechanization of other shift-left operations. 5. Fix beforeunload event registration for Cardatron and Console devices. 6. Implement "Whippet" mode for Console TTY devices to print at 200 CPS instead of 10 CPS. 7. Expand B220PaperTapePunch translate table to cover all 256 8-bit codes; scroll end of punched data into view. 8. Minor code cleanup in B220PaperTapeReader.
84 lines
3.7 KiB
HTML
84 lines
3.7 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
|
<title>retro-220 Emulator Console Printer</title>
|
|
<!--
|
|
/***********************************************************************
|
|
* retro-220/webUI B220ConsolePrinter.html
|
|
************************************************************************
|
|
* Copyright (c) 2017, Paul Kimpel.
|
|
* Licensed under the MIT License, see
|
|
* http://www.opensource.org/licenses/mit-license.php
|
|
************************************************************************
|
|
* Burroughs 220 Console printer (teletype) window.
|
|
************************************************************************
|
|
* 2017-03-17 P.Kimpel
|
|
* Original version, from retro-205 D205Flexowriter.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=printerStyleSheet rel=stylesheet type="text/css" href="B220ConsolePrinter.css">
|
|
</head>
|
|
|
|
<body id=PrinterBody class=deviceBody>
|
|
|
|
<div id=Printer class=panelSurface>
|
|
<div id=LineFeedBtn class=blackButton3></div>
|
|
<div id=LineFeedBtnCaption class=caption>LINE FEED</div>
|
|
|
|
<button id=OpenPanelBtn class=plainButton title="Click to open the printer control panel">Open Panel</button>
|
|
|
|
<div id=CarriageReturnBtnCaption class=caption>CAR. RET.</div>
|
|
<div id=CarriageReturnBtn class=blackButton3></div>
|
|
|
|
<div id=PrinterPlaten>
|
|
<pre id=Paper class=paper title="Double-click to copy all text"> </pre>
|
|
<div id=EndOfPaper> </div>
|
|
</div>
|
|
|
|
<div id=FormatControlsDiv>
|
|
<button id=ClosePanelBtn class=plainButton title="Click to close the printer control panel">Close Panel</button>
|
|
|
|
<div id=RemoteKnobRemoteCaption class=caption>REMOTE</div>
|
|
<div id=RemoteKnobLocalCaption class=caption>LOCAL</div>
|
|
|
|
<div id=ZeroSuppressOn class=caption>ZERO<br>SUPPRESS</div>
|
|
<div id=ZeroSuppressOff class=caption>NORMAL</div>
|
|
|
|
<div id=MapMemoryOn class=caption>MAP<br>MEMORY</div>
|
|
<div id=MapMemoryNormal class=caption>NORMAL</div>
|
|
|
|
<div id=FormatKnobSpaceCaption class=caption>SPACE</div>
|
|
<div id=FormatKnobTabCaption class=caption>TAB</div>
|
|
<div id=FormatKnobCarRetCaption class=caption>CAR.RET.</div>
|
|
<div id=FormatKnobCaption class=caption>FORMAT</div>
|
|
|
|
<div id=ColumnsCaption class=caption>COLUMNS</div>
|
|
<input id=Columns class=center type=text maxlength=2 value=72 title="Auto-return column, 1-80">
|
|
|
|
<div id=TabStopsCaption class=caption>TAB STOPS</div>
|
|
<input id=TabStops class=data type=text maxlength=80 title="comma-delimited list of 1-relative tab stops">
|
|
|
|
<div id=WhippetSpeedCaption class=caption>SPEED<br>WHIPPET</div>
|
|
<div id=TTYSpeedCaption class=caption>TTY</div>
|
|
|
|
<div id=UnitSwitch0Caption class=caption>SPO</div>
|
|
<div id=UnitSwitch1Caption class=caption>1</div>
|
|
<div id=UnitSwitch2Caption class=caption>2</div>
|
|
<div id=UnitSwitch3Caption class=caption>3</div>
|
|
<div id=UnitSwitch4Caption class=caption>4</div>
|
|
<div id=UnitSwitch5Caption class=caption>5</div>
|
|
<div id=UnitSwitch6Caption class=caption>6</div>
|
|
<div id=UnitSwitch7Caption class=caption>7</div>
|
|
<div id=UnitSwitch8Caption class=caption>8</div>
|
|
<div id=UnitSwitch9Caption class=caption>9</div>
|
|
<div id=UnitSwitch10Caption class=caption>0</div>
|
|
</div>
|
|
</div>
|
|
|
|
</body>
|
|
</html> |