Can you try this
do the same for reading back. EE_Ph1 to 3 are the eeprom locations of the telephone numbersCode:CASE "1" for a=0 to 12 write EE_Ph1+a,num[a] next a CASE "2" for a=0 to 12 write EE_Ph2+a,num[a] next a CASE "3" for a=0 to 12 write EE_Ph3+a,num[a] next a END SELECT gosub load
This is how to define them
EE_Ph1: data byte[13] ' allocate space for phone 1 in eeprom
EE_Ph2: data byte[13]
EE_Ph3: data byte[13]
Bookmarks