Es gibt
Zitat Zitat von Bascom Help
'Use the new label option

$eeprom

'the generated EEP file is a binary file.

'Use $EEPROMHEX to create an Intel Hex file usable with AVR Studio.

'$eepromhex
'specify a label

Label1:

Data 1 , 2 , 3 , 4 , 5

Label2:

Data 10 , 20 , 30 , 40 , 50



Readeeprom B , Label1

Print B 'prints 1

'Succesive reads will read the next value

'But the first time the label must be specified so the start is known

Readeeprom B

Print B 'prints 2
das deckt sich etwa mit restore & Co