Zitat Zitat von Gento
Dim Variable1 As Eram Byte

muß so nicht erst eine Variable dem Eram zugewiesen werden ?

Variable1=wert

Gento
Nein, daran kanns eigentlich nicht liegen. Dieses Programm hier z.B. funktioniert einwandfrei:

Code:
$regfile = "2313def.dat"
$crystal = 8000000
$baud = 9600


Dim A As Byte
Dim B As Byte

A = 54
B = 57

Writeeeprom A , 2
Writeeeprom B , 3

Readeeprom B , 2
Readeeprom A , 3

Print B
Print A

End