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 - downloadIndex: ┃ T V ┃
Length: 1971 (0x7b3) Types: TextFile Names: »V«
└─⟦afbc8121e⟧ Bits:30000532 8mm tape, Rational 1000, MC68020_OS2000 7_2_2 └─ ⟦77aa8350c⟧ »DATA« └─⟦f794ecd1d⟧ └─⟦4c85d69e2⟧ └─⟦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 System_Types; with Common_Text_Io; package Long_Float_Io is subtype File_Type is Common_Text_Io.File_Type; subtype Field is Common_Text_Io.Field; procedure Get_From_File (File : in File_Type; Item : out Long_Float; Width : in Field); procedure Put_To_File (File : in File_Type; Item : in Long_Float; Fore : in Field; Aft : in Field; Exp : in Field); procedure Get_From_String (Value : String; Item : out Long_Float; Last : out Positive); procedure Put_To_String (Result : out String; Item : in Long_Float; Aft : in Field; Exp : in Field); private pragma Suppress (Elaboration_Check, On => Get_From_File); pragma Suppress (Elaboration_Check, On => Put_To_File); pragma Suppress (Elaboration_Check, On => Get_From_String); pragma Suppress (Elaboration_Check, On => Put_To_String); end Long_Float_Io;