Thanks Darrel,

Your example will put the low byte into the array. How do I get the high byte in?

MyByteArray VAR BYTE[10]
MyWord.byte0 VAR MyByteArray[3]

or

MyByteArray VAR BYTE[10]
MyWord.byte1 VAR MyByteArray[3]

will work as well.

I can read in either the high or low byte, but not both of them.