1
0
mirror of https://github.com/pkimpel/retro-b5500.git synced 2026-02-12 11:17:29 +00:00
Files
pkimpel.retro-b5500/webUI/B5500CardPunch.html
paul.kimpel@digm.com 47e5d09ef7 1. Release emulator version 0.07.
2. Implement interrupt and device status latching in B5500CentralControl to support better UI display.
3. Implement B5500CardPunch device.
4. Implement preliminary and experimental B5500DummyPrinter device; correct printer I/O initiation in IOUnit.
5. Correct the way that Printer Finished interrupts are handled in IOUnit and CentralControl.
6. Implement Card Load Select in B5500Console and B5500SyllableDebugger.
7. Fix lack of presence-bit detection in return ops for returned values.
8. Redesign B5500CardReader UI to show last two cards read; change method of emptying the input hopper.
9. Set CHECK option and rework SYSTEM/LOG initialization in B5500ColdLoader.html.
10. Centralize system memory cycle time setting; change from 6us to 4us memory cycle time.
11. Increase Processor timeslice to 16ms and rework Processor.schedule() internals for more accurate performance throttling in browsers with poor setTimeout() granularity.
12. Reduce Processor syllable overhead from 2 cycles to 1.
13. Change B5500SPOUnit method of output to "paper" to work better in Google Chrome.
14. Make documentation and debugging enhancements in B5500IOUnit.
15. Release initial test website HTML and Unisys license PDF.
16. Commit Mark XVI DCMCP transcription as of 2013-06-21.
2013-06-24 05:04:15 +00:00

32 lines
1.2 KiB
HTML

<!DOCTYPE html>
<head>
<title>B5500 Emulator Card Punch</title>
<meta name="Author" content="Nigel Williams & Paul Kimpel">
<!-- 2013-06-16 Original version, cloned from B5500CardReader.html -->
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<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="B5500CardPunch.css">
</head>
<body>
<div id=CPDiv>
<button id=CPNotReadyLight class="redButton redLit">NOT READY</button>
<button id=CPRunoutBtn class="redButton">RUNOUT</button>
<button id=CPStopBtn class="redButton">STOP</button>
<button id=CPStartBtn class="greenButton">START</button>
<div id=CPStacker1Div>
Stacker 1 <progress id=CPStacker1Bar min=0 max=100 value=0></progress>
<iframe id=CPStacker1Frame scrolling=auto></iframe>
</div>
<div id=CPStacker2Div>
Stacker 2 <progress id=CPStacker2Bar min=0 max=100 value=0></progress>
<iframe id=CPStacker2Frame scrolling=auto></iframe>
</div>
</div>
</body>
</html>