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

⟦dd5de19ef⟧ TextFile

    Length: 572 (0x23c)
    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« 
        └─⟦a5993f977⟧ 
            └─⟦this⟧ 

TextFile

package simple_io is
	subtype count is integer range 1 .. 81;

	procedure put(c: character);
	procedure put(s: string);
	procedure put(i: integer);
	procedure put_line(s: string);
	procedure put_line(c: character);
	procedure new_line;
	procedure set_col(col: count);

	standard_output: constant integer := 0;

	procedure put(fd: integer; c: character);
	procedure put(fd: integer; s: string);
	procedure put(fd: integer; i: integer);
	procedure put_line(fd: integer; s: string);
	procedure new_line(fd: integer);
	procedure set_col(fd: integer; col: count);
end simple_io