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

⟦857bf9e4b⟧ TextFile

    Length: 537 (0x219)
    Types: TextFile
    Names: »B«

Derivation

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

TextFile

package body Chrono_Moteur is

    package Int_Io is new Text_Io.Integer_Io (Integer);

    Valeur : Integer := 0;
    procedure Inc_Temps is
    begin
        delay (0.1);
        Valeur := Valeur + 1;
    end Inc_Temps;


    procedure Reset_Temps is
    begin
        Valeur := 0;
    end Reset_Temps;


    function Temps_Moteur return Etape.Temps is
    begin
        return Etape.Temps (Valeur);
    end Temps_Moteur;


    procedure Affiche_Temps is
    begin
        Int_Io.Put (Valeur);
    end Affiche_Temps;
end Chrono_Moteur;