DataMuseum.dk

Presents historical artifacts from the history of:

Rational R1000/400 Tapes

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 Tapes

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - download
Index: ┃ P T

⟦29958a227⟧ TextFile

    Length: 987 (0x3db)
    Types: TextFile
    Names: »PC86_USER_COMMANDS«

Derivation

└─⟦bdeee703f⟧ Bits:30000538 8mm tape, Rational 1000, RWI 10_1_1
    └─ ⟦545705153⟧ »DATA« 
        └─⟦f9289093d⟧ 
└─⟦5f3412b64⟧ Bits:30000745 8mm tape, Rational 1000, ENVIRONMENT 12_6_5 TOOLS 
    └─ ⟦91c658230⟧ »DATA« 
        └─⟦f9289093d⟧ 
            └─⟦this⟧ 

TextFile

-- This is a template for changing key bindings for the Pc86 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 Pc86_Key_Names;

procedure Pc86_Commands is 
    use Pc86_Key_Names;

    type Intent is (Prompt, Execute, Interrupt);

    Action : Intent;

    Key_1  : Key_Names;
    Key_2  : Key_Names;
    Key_3  : Key_Names;
    Key_4  : Key_Names;
    Key_5  : Key_Names;
    Key_6  : 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_2 is
                when others => null;
            end case;
            
    end case;

end Pc86_Commands;