Auf www.mikrocontroller.net wusste jemand eine Antwort auf das Problem

Code:
$regfile = "ATTiny45.dat"
$crystal = 1000000 '1MHz

$hwstack = 32
$swstack = 16
$framesize = 40

'''TCCR1=&H07 'This will replace Config Timer1 = Timer , Prescale = 64
TCCR1=&H0D 'This will replace Config Timer1 = Timer , Prescale = 4096
'''TCCR1=&H0F 'This will replace Config Timer1 = Timer , Prescale = 16384
''' See datasheet for more prescaler values

On Timer1 Readrctime
Enable Timer1

Config PINb.3 = Output  'LED
Led1 Alias Portb.3

Enable Interrupts

Do
   !NOP
Loop

End

'ISR
Readrctime:
   Toggle Led1
Return
Funktioniert!!! endlich eine Lösung.
Manchmal ist es ganz einfach und nur ein paar Zeilen

Grüße
ScorpionXIII