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

⟦5c4390d8f⟧ TextFile

    Length: 910 (0x38e)
    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« 
        └─⟦6b5cd493d⟧ 
            └─⟦this⟧ 

TextFile

-- This is a template for changing key bindings for the Xdecus terminal.
-- Installing this procedure, with the desired case entries, will change the
-- actions caused by those keys for any sessions that are created with 
-- visibility to this procedure.

with Xdecus_Key_Names;

procedure Xdecus_Commands is 
    use Xdecus_Key_Names;

    type Intent is (Prompt, Execute, Interrupt);

    Action : Intent;

    Key_1  : Key_Names;
    Key_2  : Key_Names;
         

begin
    case Action is

        when Prompt => 
            case Key_1 is
                when others => null;
            end case;

        when Execute => 
            case Key_1 is
                when others => null;
            end case;                         
            
        when Interrupt =>
            case Key_1 is
                when others => null;
            end case;
            
    end case;

end Xdecus_Commands