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

⟦a52a5e39d⟧ TextFile

    Length: 997 (0x3e5)
    Types: TextFile
    Names: »V«

Derivation

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

TextFile

-- Copyright 1989 Verdix Corporation

----------------------------------------------------------------------
-- This package defines the data structures for the GROUP_TABLE build by
-- the cross linker.
----------------------------------------------------------------------
WITH System;
USE System;
WITH Unchecked_Conversion;
PACKAGE Grp_Table IS

   PRAGMA Suppress (All_Checks);
   PRAGMA Suppress (Exception_Tables);
   PRAGMA Not_Elaborated;

   --
   -- group record
   --
   TYPE Grp_Rec_T IS
      RECORD
         G_Base : Address;
         G_Size : Integer;
         G_Kind : Integer;
      END RECORD;

   --
   -- group block kinds
   --
   Text_Blk  : CONSTANT := 0;
   Const_Blk : CONSTANT := 1;
   Data_Blk  : CONSTANT := 2;
   Bss_Blk   : CONSTANT := 3;
   Void_Blk  : CONSTANT := 4;

   TYPE Grp_Tbl_T   IS ARRAY (Integer RANGE <>) OF Grp_Rec_T;
   TYPE A_Grp_Tbl_T IS ACCESS Grp_Tbl_T;

   FUNCTION To_A_Grp_Tbl_T IS NEW Unchecked_Conversion (Address, A_Grp_Tbl_T);

END Grp_Table;