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

⟦6dda28f67⟧ TextFile

    Length: 1020 (0x3fc)
    Types: TextFile
    Names: »B«

Derivation

└─⟦85b835f43⟧ Bits:30000549 8mm tape, Rational 1000, Xlib rev 6.00
    └─ ⟦0c20f784e⟧ »DATA« 
        └─⟦1abbe589f⟧ 
            └─⟦49e7f20b9⟧ 
                └─⟦this⟧ 

TextFile

with Xlbmt_Network_Types;  
use Xlbmt_Network_Types;

------------------------------------------------------------------------------
-- Data - Specifies the data to be byte-swapped.
--
-- If necessary, swap bytes in a Raw_Data_Array to match the internal
-- representation used on this machine.  The raw data array passed
-- should represent a single primitive item (E.g. a S_Long or U_Short).
------------------------------------------------------------------------------

--/ if Byte0_Sign_Byte then

function Swap_Raw_Data (Data : X_Raw_Data_Array) return X_Raw_Data_Array is  
begin  
    return Data;  
end Swap_Raw_Data;

--/ else
--//
--// function Swap_Raw_Data (Data : X_Raw_Data_Array) return X_Raw_Data_Array is
--//     Bias   : constant X_Raw_Data_Index := Data'Length + 1;
--//     Result : X_Raw_Data_Array (Data'Range);
--// begin
--//     for Index in Data'Range loop
--//         Result (Index) := Data (Bias - Index);
--//     end loop;
--//     return Result;
--// end Swap_Raw_Data;
--//
--/ end if;