Hello Darrel,

Darrel>>I'm sure I can come up with something for an example.

But first, I'm preparing another program for the Code Examples forum that is somewhat similar. Except that it assigns variables to EEPROM instead of RAM.

It uses some of the same concepts, yet is very different from doing it in RAM.<<

I like the idea of using a label to access RAM or EEPROM... I guess I could write a Subroutine quite easily to accomplish this task to the EEPROM...Since all it is, is a Read/Write and a integer value placement of the EEPROM position. I am not good enough in PBP to know all the ins and outs of the language.

Something simple such as:

Pseudo Code:

Placement var byte
Value var byte

for s= 1 to 100
Placement = Random 5
GoSub ReadRoutine
LCDOUT Value
next s

ReadRoutine:
Read Placement, value
return


Thus this will give a Pseudo kind of Variable Passing, and you can put the ReadRoutine in a Include statement of somekind. But this is kinda Hokey <g>

Dwayne