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

⟦2db1ce4d0⟧ TextFile

    Length: 761 (0x2f9)
    Types: TextFile
    Names: »B«

Derivation

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

TextFile

with Text_Io;  
use Text_Io;
with Timer_Moteur;  
use Timer_Moteur;
with Etape;
procedure Test_C is  
    package Int_Io is new Text_Io.Integer_Io (Integer);
    type C is new Timer_Moteur.Objet;
    Ch : C;
    Val, Tmp : Etape.Temps;
    Continu : Boolean := True;

begin

    Init_Temps (Ch);  
    Reset_Temps (Ch);
    Put_Line ("debut du test");
    Start_Temps (Ch);  
    Tmp := Temps_Moteur (Ch);  
    while Continu loop  
        Val := Temps_Moteur (Ch);  
        if Tmp /= Val then
            Put ("temps : ");
            Int_Io.Put (Val);
            Put_Line ("");
        end if;
        if Val > Etape.Temps (300) then
            Continu := False;
        end if;
    end loop;
    Stop_Temps (Ch);
    Put_Line ("fin du test");
end Test_C;