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: ┃ B T

⟦e8477bcf3⟧ TextFile

    Length: 2101 (0x835)
    Types: TextFile
    Names: »B«

Derivation

└─⟦afbc8121e⟧ Bits:30000532 8mm tape, Rational 1000, MC68020_OS2000 7_2_2
    └─ ⟦77aa8350c⟧ »DATA« 
        └─⟦f794ecd1d⟧ 
            └─⟦24d1ddd49⟧ 
                └─⟦this⟧ 

TextFile

--    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 Debug_Io;
with Debug_Definitions;
with Unchecked_Conversion;

package body Exceptions is

    pragma Suppress (Range_Check);
    pragma Suppress (Index_Check);
    pragma Suppress (Access_Check);
    pragma Suppress (Storage_Check);

    Base_Location : System_Definitions.Address;
    pragma Import_Object (Base_Location, "__MODULE_BASE_ADDRESS");

    function "-" (L, R : System_Definitions.Address) return Integer
        renames System_Definitions.Operators.Minus_Aa;

    procedure Trace (Item : Name; Location : System_Definitions.Address) is
        pragma Routine_Number (Runtime_Ids.Internal);
    begin
        if Debug_Definitions.Debug_Exceptions then
            if Item /= null then
                Debug_Io.Put (Item.Image (1 .. Item.Length));
                Debug_Io.Put (" raised at ");
            else
                Debug_Io.Put ("Unexpected trap at ");
            end if;
            Debug_Io.Put_Line (Integer'Image (Location - Base_Location));
        end if;
    end Trace;

end Exceptions;
pragma Export_Elaboration_Procedure ("__EXCEPTIONS_BODY_ELAB");
pragma Runtime_Unit (Unit_Number         => Runtime_Ids.Runtime_Compunit,
                     Elab_Routine_Number => Runtime_Ids.Internal);