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

⟦73e15e11b⟧ TextFile

    Length: 536 (0x218)
    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« 
        └─⟦9d8478164⟧ 
            └─⟦this⟧ 

TextFile


with system;

package local_io_conf is

	type local_device_handle is (
			DEV0, DEV1, DEV2, DEV3, DEV4, DEV5, DEV6, DEV7,
			DEV8, DEV9, DEV10, DEV11, DEV12, DEV13, DEV14, DEV15
		);


	procedure initialize(
			device: local_device_handle
		);


	procedure shutdown(
			device: local_device_handle
		);


	procedure read(
			device: local_device_handle;
			addr: system.address;
			count: in out natural
		);


	procedure write(
			device: local_device_handle;
			addr: system.address;
			count: in out natural
		);


end local_io_conf