mirror of
https://github.com/pkimpel/retro-220.git
synced 2026-01-13 15:18:24 +00:00
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.
48 lines
1.6 KiB
HTML
48 lines
1.6 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>
|
|
|
|
<body>
|
|
<div id=Paper class=paper></div>
|
|
<div id=EndOfPaper></div>
|
|
</body>
|
|
</html> |