mirror of
https://github.com/pkimpel/retro-b5500.git
synced 2026-02-13 03:34:29 +00:00
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.
73 lines
3.9 KiB
JavaScript
73 lines
3.9 KiB
JavaScript
/***********************************************************************
|
|
* retro-b5500/emulator B5500SystemConfiguration.js
|
|
************************************************************************
|
|
* Copyright (c) 2012, Nigel Williams and Paul Kimpel.
|
|
* Licensed under the MIT License,
|
|
* see http://www.opensource.org/licenses/mit-license.php
|
|
************************************************************************
|
|
* B5500 System Configuration module.
|
|
*
|
|
* This is presently a static Javascript object describing the hardware
|
|
* modules and peripherals attached to the system.
|
|
************************************************************************
|
|
* 2012-06-30 P.Kimpel
|
|
* Original version, from thin air.
|
|
***********************************************************************/
|
|
"use strict";
|
|
|
|
var B5500SystemConfiguration = {
|
|
|
|
PA: true, // Processor A available
|
|
PB: false, // Processor B available
|
|
|
|
PB1L: false, // PA is P1 (false) | PB is P1 (true)
|
|
|
|
IO1: true, // I/O Unit 1 available
|
|
IO2: true, // I/O Unit 2 available
|
|
IO3: false, // I/O Unit 3 available
|
|
IO4: false, // I/O Unit 4 available
|
|
|
|
memMod: [
|
|
true, // Memory module 0 available (4KW)
|
|
true, // Memory module 1 available (4KW)
|
|
false, // Memory module 2 available (4KW)
|
|
false, // Memory module 3 available (4KW)
|
|
true, // Memory module 4 available (4KW)
|
|
true, // Memory module 5 available (4KW)
|
|
true, // Memory module 6 available (4KW)
|
|
true], // Memory module 7 available (4KW)
|
|
|
|
units: {
|
|
SPO: true, // SPO keyboard/printer
|
|
DKA: true, // Disk File Control A
|
|
DKB: false, // Disk File Control B
|
|
CRA: true, // Card Reader A
|
|
CRB: false, // Card Reader B
|
|
CPA: true, // Card Punch A
|
|
LPA: true, // Line Printer A
|
|
LPB: false, // Line Printer B
|
|
PRA: false, // Paper Tape Reader A
|
|
PRB: false, // Paper Tape Reader B
|
|
PPA: false, // Paper Tape Punch A
|
|
PPB: false, // Paper Tape Punch A
|
|
DCA: false, // Data Communications Control A
|
|
DRA: false, // Drum/Auxmem A
|
|
DRB: false, // Drum/Auxmem B
|
|
MTA: false, // Magnetic Tape Unit A
|
|
MTB: false, // Magnetic Tape Unit B
|
|
MTC: false, // Magnetic Tape Unit C
|
|
MTD: false, // Magnetic Tape Unit D
|
|
MTE: false, // Magnetic Tape Unit E
|
|
MTF: false, // Magnetic Tape Unit F
|
|
MTH: false, // Magnetic Tape Unit H
|
|
MTJ: false, // Magnetic Tape Unit J
|
|
MTK: false, // Magnetic Tape Unit K
|
|
MTL: false, // Magnetic Tape Unit L
|
|
MTM: false, // Magnetic Tape Unit M
|
|
MTN: false, // Magnetic Tape Unit N
|
|
MTP: false, // Magnetic Tape Unit P
|
|
MTR: false, // Magnetic Tape Unit R
|
|
MTS: false, // Magnetic Tape Unit S
|
|
MTT: false}, // Magnetic Tape Unit X
|
|
};
|