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: ┃ T V

⟦bbe2845c9⟧ TextFile

    Length: 1000 (0x3e8)
    Types: TextFile
    Names: »V«

Derivation

└─⟦a7d1ea751⟧ Bits:30000550 8mm tape, Rational 1000, !users!projects 94_04_11
    └─ ⟦129cab021⟧ »DATA« 
        └─⟦this⟧ 

TextFile

with Standard_String;

package Motor is

    subtype Numero is Natural range 0 .. 99;
    subtype Commande is Integer range -1 .. 9999;
    subtype Action is Natural range 0 .. 999999;


    procedure Jouer (Nom_Du_Fichier_Physique : String);

    procedure Ouvrir (Nom_Du_Fichier_Physique : String);
    procedure Fermer;

    procedure Inserer_Un_Evenement (Un_Temps_Relatif : Natural;
                                    Une_Adresse_Station : Numero;
                                    Numero_Acteur : Numero;
                                    Valeur : Commande := 0;
                                    Transition : Commande := 0);

    procedure Inserer_Une_Action (Un_Temps_Relatif : Natural;
                                  Une_Adresse_Station : Numero;
                                  Une_Action : Action;
                                  De : Commande := -1;
                                  Vers : Commande := -1;
                                  En : Commande := -1);

end Motor;