|
|
DataMuseum.dkPresents historical artifacts from the history of: Rational R1000/400 |
This is an automatic "excavation" of a thematic subset of
See our Wiki for more about Rational R1000/400 Excavated with: AutoArchaeologist - Free & Open Source Software. |
top - metrics - download
Length: 740 (0x2e4)
Types: TextFile
Notes: R1k Text-file segment
└─⟦8527c1e9b⟧ Bits:30000544 8mm tape, Rational 1000, Arrival backup of disks in PAM's R1000
└─⟦cfc2e13cd⟧ »Space Info Vol 2«
└─⟦ae77b063b⟧
└─⟦this⟧
-- Copyright 1988 Verdix Corporation
----------------------------------------------------------------------
-- This package contains the memory map configuration data structures
-- and constants.
----------------------------------------------------------------------
with system;
package v_mem_conf is
pragma suppress(ALL_CHECKS);
pragma suppress(EXCEPTION_TABLES);
pragma not_elaborated;
type memory_acc_t is (
READ_ONLY,
WRITE_ONLY,
READ_WRITE
);
type memory_map_t is record
low_addr: system.address;
high_addr: system.address;
memory_acc: memory_acc_t;
end record;
type memory_map_table_t is array(natural range <>) of memory_map_t;
end v_mem_conf