Moin,
Folgendes Programm will Bascom nicht compilieren:

$regfile = "ATtiny13.DAT"
$crystal = 4800000
Config Pinb.0 = Output
Tccr0a = &B11110001
Tccr0b = &B00000011
Dim I As Byte
Do

For I = 1 To 255
Ocr0a = I
Waitms 5
Next I
For I = 255 To 1 Step -1
Ocr0a = I
Waitms 5
Next I
Loop

End

Eigentlich nichts Weltbewegendes, aber Bascom will die Variable nicht anerkennen: Error 22 Out of SRAM space

Was ist da falsch?

Gruss

Alex