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

⟦ef5accf4e⟧ TextFile

    Length: 431 (0x1af)
    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« 
        └─⟦d9922cc62⟧ 
            └─⟦this⟧ 

TextFile

with system;
with vads_c;

procedure VadsCCrossAdaMain is

	function main (argc : integer; argv : system.address) return integer;
		pragma interface(C, main);

	procedure c_exit (status : integer);
		pragma interface(C, c_exit);
		pragma interface_name(c_exit, "_exit");

	argv0 : system.address;

begin
	argv0 := system.no_addr;
	c_exit(main(0, argv0'address));
end;

pragma external_name(VadsCCrossAdaMain, "__VadsCCrossAdaMain")