DataMuseum.dk

Presents historical artifacts from the history of:

Rational R1000/400

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

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - download

⟦e42f18bcd⟧ TextFile

    Length: 430 (0x1ae)
    Types: TextFile
    Notes: R1k Text-file segment

Derivation

└─⟦8527c1e9b⟧ Bits:30000544 8mm tape, Rational 1000, Arrival backup of disks in PAM's R1000
    └─ ⟦cfc2e13cd⟧ »Space Info Vol 2« 
        └─⟦0fa25e323⟧ 
            └─⟦this⟧ 

TextFile

-- A package to define types that are common to many packages.
with machine_types;
package types is


-- big_endian machines are:    68K, SPARC, IBM RT, RS/6000, 88000, MIPS, PowerPC
-- little_endian machines are: 386, DEC VAX, DECStation, 860, 960, MIPS, PowerPC

	type byte_ordering is (little_endian, big_endian);
	for byte_ordering use (little_endian => 1, big_endian => 2);
	for byte_ordering'size use integer'size;
end types