1
0
mirror of https://github.com/pkimpel/retro-b5500.git synced 2026-02-13 19:54:50 +00:00
Files
pkimpel.retro-b5500/webUI/B5500Console.html
paul.kimpel@digm.com 1dad7d9744 Commit Release 1.01:
1. Split operator Control Panel from B5500Console and make it a small, separate window.
2. Implement emulator home page in what remains of B5500Console page, with Start buttons for emulator.
3. Implement improvements to setCallback() mechanism, copied from Datatron 205 project.
4. Increase scrollback for SPO and Datacom windows from 1500 to 5000 lines.
5. Correct application of green-bar styling in B5500LinePrinter (apparent in Chrome).
6. Improve initial positioning of Magnetic Tape unit windows; add "B" to mag tape reel image.
7. Minor optimizations to bit-field isolate/insert routines in CentralControl.
8. Miscellaneous enhancements to UI appearance.
9. Minor changes to hosting website pages.
2015-02-09 06:30:43 +00:00

109 lines
3.8 KiB
HTML

<!DOCTYPE html>
<html manifest="B5500Manifest.appcache">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>retro-B5500 Emulator</title>
<!--
/***********************************************************************
* retro-b5500/emulator B5500Console.html
************************************************************************
* Copyright (c) 2012,2014, Nigel Williams and Paul Kimpel.
* Licensed under the MIT License, see
* http://www.opensource.org/licenses/mit-license.php
************************************************************************
* B5500 Operations Console page.
*
* Implements the B5500 emulator operations console display.
*
************************************************************************
* 2012-06-14 P.Kimpel
* Original version, from thin air and a PowerPoint mockup.
* 2014-07-20 P.Kimpel
* Split off Javascript code into a separate script.
* 2015-01-24 P.Kimpel
* Strip down to new, minimal home page sans console panel.
***********************************************************************/
-->
<meta name="Author" content="Nigel Williams & 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="B5500Common.css">
<link id=consoleStyleSheet rel=stylesheet type="text/css" href="B5500Console.css">
<script src="./B5500SetCallback.js"></script> <!-- must be first -->
<script src="./B5500Util.js"></script> <!-- must be second -->
<script src="../emulator/B5500SystemConfiguration.js"></script>
<script src="./B5500DiskStorageConfig.js"></script>
<script src="./B5500SystemConfig.js"></script>
<script src="./B5500DummyUnit.js"></script>
<script src="./B5500SPOUnit.js"></script>
<script src="./B5500DiskUnit.js"></script>
<script src="./B5500CardReader.js"></script>
<script src="./B5500CardPunch.js"></script>
<script src="./B5500LinePrinter.js"></script>
<script src="./B5500DatacomUnit.js"></script>
<script src="./B5500MagTapeDrive.js"></script>
<script src="../emulator/B5500CentralControl.js"></script>
<script src="../emulator/B5500Processor.js"></script>
<script src="../emulator/B5500IOUnit.js"></script>
<script src="./B5500ConsolePanel.js"></script>
<script src="./B5500Console.js"></script>
</head>
<body>
<div id=VersionDiv>
<img id=RetroB5500Logo src="./resources/retro-B5500-Logo.png" alt="retro-B5500 Logo">
<div id=EmulatorVersion></div>
</div>
<h1>Burroughs B5500 Emulator</h1>
<hr>
<table id=InfoTable>
<tr>
<td><a href="https://code.google.com/p/retro-b5500/" target="_blank">
Open-Source Project</a>
<td id=StatusMsg>
<td class=rj><a href="http://retro-b5500.blogspot.com/" target="_blank">
Project Blog</a>
<tr>
<td><a href="http://code.google.com/p/retro-b5500/wiki/WebUIGettingStarted" target="_blank">
Getting Started Wiki</a>
<td>&nbsp;
<td class=rj><a href="http://www.phkimpel.us/B5500/" target="_blank">
Resources</a>
</table>
<div id=CenteredBody>
<img id=B5500Image src="./resources/Burroughs-B5500-102646215-05-01-06.jpg"
alt="Burroughs B5500 System, ca. 1966">
<br>
<button id=StartUpPoweredBtn title="Start the emulator and automatically power it on">
Start &amp; Power On
</button>
&nbsp;&nbsp;&nbsp;
<button id=StartUpNoPowerBtn title="Start the emulator in a power-off state">
Start &ndash; Powered Off
</button>
</div>
<table id=CallbackTable>
<thead>
<tr>
<th>ID
<th>Delay
<th>Context
<th>#Args
</thead>
<tbody id=CallbackBody>
</tbody>
</table>
<div id=PageFooter>
<i>(Note: Closing or minimizing this window may cause the emulator to run very slowly)</i>
</div>
</body>
</html>