|
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: 948 (0x3b4) Types: TextFile Names: »V«
└─⟦25882cbde⟧ Bits:30000536 8mm tape, Rational 1000, RCI_RS6000_AIX_IBM 2_0_2 └─ ⟦b8efda8ac⟧ »DATA« └─⟦7061b4ee8⟧ └─⟦dea849e77⟧ └─⟦this⟧
package System2 is -- for integer'size use 32; type Private_Address is limited private; -- for address'size use 4*storage_unit; type Name is (Aix_6000); System_Name : constant Name := Aix_6000; Storage_Unit : constant := 8; Memory_Size : constant := 1024 * 1024 * 256; -- 256 Mb. -- System-Dependent Named Numbers: Min_Int : constant := -(2 ** 31); Max_Int : constant := (2 ** 31) - 1; Max_Digits : constant := 15; Max_Mantissa : constant := 31; Fine_Delta : constant := 1.0 / (2 ** Max_Mantissa); Tick : constant := 0.00006; -- Other System-dependent Declarations subtype Priority is Integer range 0 .. 255; Max_Object_Size : constant := (32 * 1024) - 1; Max_Record_Count : constant := (32 * 1024) - 1; Max_Text_Io_Count : constant := 16 * 1024; Max_Text_Io_Field : constant := 1000; private type Private_Address is access Integer; end System2;