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

⟦e517d4ad7⟧ TextFile

    Length: 735 (0x2df)
    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« 
        └─⟦5ca6c5aa0⟧ 
            └─⟦this⟧ 

TextFile

-- Copyright 1988 Verdix Corporation

------------------------------------------------------------------------------
-- Interface to the routines that contain the actual machine trap instructions
-- for trapping to TDM or kernel.
------------------------------------------------------------------------------
package v_i_trap is

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

    --
    -- The following routines do the traps
    --
    procedure trap_to_tdm;
    procedure trap_to_krn;

private
	pragma interface(ADA, trap_to_tdm);
	pragma interface_name(trap_to_tdm, "__TRAP_TO_TDM");
	pragma interface(ADA, trap_to_krn);
	pragma interface_name(trap_to_krn, "__TRAP_TO_KRN");
end