Updated RAM component with TODO regarding 16Kb alignment
This commit is contained in:
parent
a5a40ebab4
commit
c0a2a7c39a
1 changed files with 5 additions and 0 deletions
|
|
@ -57,6 +57,11 @@ if (NODE) {
|
||||||
* NOTE: We make a note of the specified size, but no memory is initially allocated for the RAM until the
|
* NOTE: We make a note of the specified size, but no memory is initially allocated for the RAM until the
|
||||||
* Computer component calls powerUp().
|
* Computer component calls powerUp().
|
||||||
*
|
*
|
||||||
|
* TODO: I seem to recall a PDP-11 diagnostic that failed if total RAM wasn't a multiple of 16Kb; our Bus
|
||||||
|
* component defaults to a block size that matches BusPDP11.IOPAGE_LENGTH (ie, 8Kb), and we even allow partial
|
||||||
|
* block allocations, so internally, we don't have that requirement, but for better compatibility, perhaps we
|
||||||
|
* should display a non-fatal warning if addr or size don't fall on 16Kb boundaries.
|
||||||
|
*
|
||||||
* @constructor
|
* @constructor
|
||||||
* @extends Component
|
* @extends Component
|
||||||
* @param {Object} parmsRAM
|
* @param {Object} parmsRAM
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue