mirror of
https://github.com/pkimpel/retro-220.git
synced 2026-01-13 15:18:24 +00:00
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.
89 lines
3.0 KiB
HTML
89 lines
3.0 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
|
<title>retro-220 Emulator</title>
|
|
<!--
|
|
/***********************************************************************
|
|
* retro-220/webUI B220.html
|
|
************************************************************************
|
|
* Copyright (c) 2017, Paul Kimpel.
|
|
* Licensed under the MIT License, see
|
|
* http://www.opensource.org/licenses/mit-license.php
|
|
************************************************************************
|
|
* Burroughs 220 Emulator home page.
|
|
************************************************************************
|
|
* 2017-01-01 P.Kimpel
|
|
* Original version, from retro-205 D205.html.
|
|
* 2018-01-04 P.Kimpel
|
|
* Remove deprecated Application Cache (appcache) configuration.
|
|
***********************************************************************/
|
|
-->
|
|
<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=homeStyleSheet rel=stylesheet type="text/css" href="B220.css">
|
|
|
|
<script src="./B220PanelUtil.js"></script> <!-- must be first -->
|
|
<script src="./B220Util.js"></script>
|
|
<script src="./B220SetCallback.js"></script>
|
|
<script src="./B220SystemConfig.js"></script>
|
|
|
|
<script src="../emulator/B220Processor.js"></script>
|
|
|
|
<script src="./B220CardatronInput.js"></script>
|
|
<script src="./B220CardatronOutput.js"></script>
|
|
<script src="./B220CardatronControl.js"></script>
|
|
|
|
<!--
|
|
<script src="./B220DataFile.js"></script>
|
|
-->
|
|
<script src="./B220MagTapeDrive.js"></script>
|
|
<script src="./B220MagTapeControl.js"></script>
|
|
|
|
<script src="./B220ConsoleKeyboard.js"></script>
|
|
<script src="./B220ConsolePrinter.js"></script>
|
|
<script src="./B220PaperTapePunch.js"></script>
|
|
<script src="./B220PaperTapeReader.js"></script>
|
|
|
|
<script src="./B220ControlConsole.js"></script>
|
|
|
|
<script src="./B220.js"></script>
|
|
</head>
|
|
|
|
<body>
|
|
<div id=VersionDiv>
|
|
<img id=Retro220Logo src="./resources/retro-220-Logo.png" alt="retro-220 Logo">
|
|
<div id=EmulatorVersion></div>
|
|
</div>
|
|
<h1>Burroughs 220 Emulator</h1>
|
|
<hr>
|
|
<table id=InfoTable>
|
|
<tr>
|
|
<td><a href="https://github.com/pkimpel/retro-220/" target="_blank">
|
|
Open-Source Project</a>
|
|
<td id=StatusMsg>
|
|
<td class=rj><a href="http://datatron.blogspot.com/" target="_blank">
|
|
Burroughs 205 & 220 Blog</a>
|
|
</table>
|
|
|
|
<div id=CenteredBody>
|
|
<img id=B220Image src="./resources/B220-Site.jpg"
|
|
alt="Burroughs 220 System, ca. 1960">
|
|
<br>
|
|
<button id=StartUpBtn>
|
|
Start the Emulator
|
|
</button>
|
|
|
|
<button id=ConfigureBtn>
|
|
Configure System
|
|
</button>
|
|
|
|
<div id=PageFooter>
|
|
<i>(Caution: Closing this window, minimizing it, or placing the page on a non-active tab may cause the emulator to run very slowly)</i>
|
|
</div>
|
|
</div>
|
|
|
|
</body>
|
|
</html> |