Ich hab das BASCOM-Teil auch mal geladen. Garnicht so übel. Bin eigentlich gleich klar gekommen - so "Hello World" mäßig zumindest

Hab mal hab mal das blinkende LED-Beispiel vom GCC-Compiler in Bascom Basic übersetzt:



Code:
Dim I As Byte

Config Portb = Output

Portb = 0
I = 0
Do
  Portb = I
  Incr I
  Waitms 300
Loop

End
Gruß Frank