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

⟦ef99b8cb1⟧ TextFile

    Length: 762 (0x2fa)
    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« 
        └─⟦78a71486c⟧ 
            └─⟦this⟧ 

TextFile

with transport_defs;
with system;
with unchecked_conversion;

package user_traps is


	TDM_EXIT:         constant := 0;
	TDM_RECEIVE:      constant := 1;
	TDM_SEND:         constant := 2;

	----------------------------------------------------------
	-- Parameter block structure for send and receive calls --
	----------------------------------------------------------
	type IO_params is record
		chan: transport_defs.channel_t;
		cnt:  integer;
		buf:  system.address;
	end record;

	for IO_params use record
		chan 			at 0 range 0..7;
		cnt				at 2 range 0..31;
		buf				at 6 range 0..31;
	end record;

	type a_IO_params is access IO_params;

	function to_a_IO_params is new unchecked_conversion(
			source => system.address,
			target => a_IO_params
		);

end