|
|
DataMuseum.dkPresents historical artifacts from the history of: Rational R1000/400 Tapes |
This is an automatic "excavation" of a thematic subset of
See our Wiki for more about Rational R1000/400 Tapes Excavated with: AutoArchaeologist - Free & Open Source Software. |
top - metrics - downloadIndex: T V
Length: 2347 (0x92b)
Types: TextFile
Names: »V«
└─⟦afbc8121e⟧ Bits:30000532 8mm tape, Rational 1000, MC68020_OS2000 7_2_2
└─⟦77aa8350c⟧ »DATA«
└─⟦f794ecd1d⟧
└─⟦24d1ddd49⟧
└─⟦this⟧
-- The use of this system is subject to the software license terms and
-- conditions agreed upon between Rational and the Customer.
--
-- Copyright 1988 by Rational.
--
-- RESTRICTED RIGHTS LEGEND
--
-- Use, duplication, or disclosure by the Government is subject to
-- restrictions as set forth in subdivision (b)(3)(ii) of the Rights in
-- Technical Data and Computer Software clause at 52.227-7013.
--
--
-- Rational
-- 3320 Scott Boulevard
-- Santa Clara, California 95054-3197
--
-- PROPRIETARY AND CONFIDENTIAL INFORMATION OF RATIONAL;
-- USE OR COPYING WITHOUT EXPRESS WRITTEN AUTHORIZATION
-- IS STRICTLY PROHIBITED. THIS MATERIAL IS PROTECTED AS
-- AN UNPUBLISHED WORK UNDER THE U.S. COPYRIGHT ACT OF
-- 1976. CREATED 1988. ALL RIGHTS RESERVED.
--
--
with Attribute_Definitions;
with Runtime_Ids;
package Enum_Rep_Attr is
-- The following three functions are called only for
-- enumeration types with representation clauses.
function Enum_Succ (Table : Attribute_Definitions.Enum_Rep_Table;
Value : Integer) return Integer;
-- Will raise Constraint_Error if Value is not in the table or if its
-- position is Table'Length - 1.
function Enum_Pred (Table : Attribute_Definitions.Enum_Rep_Table;
Value : Integer) return Integer;
-- Will raise Constraint_Error if Value is not in the table or if its
-- position is 0.
function Enum_Pos (Table : Attribute_Definitions.Enum_Rep_Table;
Value : Integer) return Natural;
-- Will raise Constraint_Error if Value is not in the table.
private
pragma Export_Function (Internal => Enum_Succ, External => "__ENUM_SUCC");
pragma Suppress (Elaboration_Check, Enum_Succ);
pragma Export_Function (Internal => Enum_Pred, External => "__ENUM_PRED");
pragma Suppress (Elaboration_Check, Enum_Pred);
pragma Export_Function (Internal => Enum_Pos, External => "__ENUM_POS");
pragma Suppress (Elaboration_Check, Enum_Pos);
end Enum_Rep_Attr;
pragma Export_Elaboration_Procedure ("__ENUM_REP_ATTR_SPEC_ELAB");
pragma Runtime_Unit (Unit_Number => Runtime_Ids.Runtime_Compunit,
Elab_Routine_Number => Runtime_Ids.Internal);