DataMuseum.dkPresents historical artifacts from the history of: Rational R1000/400 Tapes |
This is an automatic "excavation" of a thematic subset of
See our Wiki for more about Rational R1000/400 Tapes Excavated with: AutoArchaeologist - Free & Open Source Software. |
top - downloadIndex: ┃ B T ┃
Length: 761 (0x2f9) Types: TextFile Names: »B«
└─⟦a7d1ea751⟧ Bits:30000550 8mm tape, Rational 1000, !users!projects 94_04_11 └─ ⟦129cab021⟧ »DATA« └─⟦this⟧
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;