DataMuseum.dk

Presents historical artifacts from the history of:

Rational R1000/400 Tapes

This is an automatic "excavation" of a thematic subset of
artifacts from Datamuseum.dk's BitArchive.

See our Wiki for more about Rational R1000/400 Tapes

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - download
Index: ┃ T V

⟦bcb755db7⟧ TextFile

    Length: 722 (0x2d2)
    Types: TextFile
    Names: »V«

Derivation

└─⟦516dceb10⟧ Bits:30000751 8mm tape, Rational 1000, RCI_VADS
    └─ ⟦9a14c9417⟧ »DATA« 
        └─⟦this⟧ 

TextFile


-- 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;