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

⟦6a3c3d911⟧ TextFile

    Length: 479 (0x1df)
    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« 
        └─⟦6ac8b1096⟧ 
            └─⟦this⟧ 

TextFile


-- types and constants describing the target.

package machine_types is

	pragma suppress(ALL_CHECKS);
	pragma suppress(EXCEPTION_TABLES);
	pragma not_elaborated;

	----------------------------------------------
	-- basic machine representations        
	-- we read/write bytes/words on every machine.
	----------------------------------------------
	type byte is range 0..16#ff#;
	for byte'size use 8;

	type word is range 0..16#ffff#;
	for word'size use 16;

end machine_types