1
0
mirror of https://github.com/pkimpel/retro-220.git synced 2026-01-29 21:21:19 +00:00
Files
pkimpel.retro-220/webUI/B220FramePaper.html
Paul Kimpel 936aadf6ee Commit retro-220 emulator version 0.05:
1. Remove Application Cache mechanism (has been deprecated as a web standard).
2. Replace internal bindMethod() utility function with standard Javascript object.bind().
3. Automatically reset Digit Check Alarm when bits are corrected in registers.
4. Correct setting of Overflow Toggle in IFL.
5. Terminate magnetic tape data transfer if AST toggle gets reset.
6. Correct way Processor was released by magnetic tape TCU.
7. Correct construction of preface word in memory for mag tape MRR.
8. Correct determination of mag tape "remote" status to allow tape to be unloaded immediately after a rewind.
9. Fix bug in BCS detecting the switch setting.
10. Modify behavior of Reset/Transfer switch to allow recovery after a tape malfunction.
11. Correct formatting of HIGH lamp on Control Console.
12. Remove extraneous whitespace from B220FramePaper sub-window markup.
2018-01-12 08:40:49 -08:00

46 lines
1.7 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Burroughs 220 Device Frame Paper Page</title>
<!--
/***********************************************************************
* retro-220/webUI B220FramePaper.html
************************************************************************
* Copyright (c) 2017, Paul Kimpel.
* Licensed under the MIT License, see
* http://www.opensource.org/licenses/mit-license.php
************************************************************************
* Burroughs 220 user interface blank page for use with Card Reader, Punch, etc.
************************************************************************
* 2017-03-19 P.Kimpel
* Original version, from retro-205 D205FramePaper.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">
<style id=PaperFrameStyles>
BODY {
padding: 2px;
background-color: white}
#Paper {
margin: 0;
font-size: 8pt}
#EndOfPaper {
height: 1px;
border: 0;
opacity: 0}
DIV.whiteBar {
white-space: pre;
background-color: white}
DIV.greenBar {
white-space: pre;
background-color: #CFC}
</style>
</head>
<!-- Don't add any additional whitespace to the BODY! -->
<body><div id=Paper class=paper></div><div id=EndOfPaper></div></body>
</html>