Beim Testen von m_herr's Timer-Problem bekam ich folgende Fehlermeldung:
Error: 61 Label not found [Timer_Jump
Der Label erscheint auch nicht im IDE-Fenster
------------------------------------------------------------------------
version 1.11.8.1 / xp
kann das bitte mal einer testen - Danke
------------------------------------------------------------------------
$regfile = "m8def.dat"
$crystal = 4000000
Dim H_flag as byte
Dim H as word
Const Ticks0 = 62

Config Timer0 = Timer, Prescale = 64

On Timer0 = Timer_Jump
Enable Timer0
Enable Interrupts
H = 0
H_flag = 1

Do
If H_flag = 1 Then
Incr H
Print H
End If
loop until H = 500
end

Timer_Jump:
Load Timer0 , Ticks0 '0,001sek
H_flag = 1
return