Why don't continuation lines work in EEPROM command?

Peterf

New Member
EEPROM 0,(1, 2, 3, 4, 5, 6)
works.

EEPROM 0,(1, 2, 3, _
4, 5, 6)
does not work. This means if one has a long table of data one cannot break it up into meaningful lines, let alone comment them.
 

Buzby

Senior Member
Welcome to the forum !.

Put the underscore hard-up against the comma, don't use a space.

eeprom 0,(1,2,3,_
4,5,6)

EDIT : Which version of PE are you using ?
 

hippy

Technical Support
Staff member
Continuation characters should work with a space before them, do when I try it, but must be the last character on a line. If there are trailing spaces or tabs that might be causing an issue.
 
Top