Guten Abend!

Ich habe folgendes Problem:

Ich versuche mittels Bascom-Demo und entsprechender Library mein GrafikLCD zu Testzwecken zum laufen zu bringen.

So weit so gut.
Ich bekomme die Fehlermeldung:
Illegal character
und
Label not Found

Folgenden code habe ich geschrieben:

Code:
$regfile = "m32def.dat"
$crystal = 11095000

$lib "glcdKS108.lib"

Config Graphlcd = 128 * 64sed , Dataport = Portc , Controlport = Porta , Ce = 6 , Ce2 = 5 , Cd = 4 , Rd = 3 , Reset = 7 , Enable = 2

Cls

Setfont Font8x8

Do
Lcdat 1 , 1 , "123"
Wait 1
Cls
Loop

End
$include "Font8x8.font"
Kennt sich jemand damit aus?

Marten83