Quote Originally Posted by archendekta View Post
compiler returns this error: This style array syntax not supported

i'm looking at this page now for some pointers,
http://www.picbasic.co.uk/forum/show...ht=style+array


maybe there is a limitation on the usart for sizes >byte or there is a register config setting i've missed on this 16f88.

i'm looking into it, back later ...

Then have a word variable like

Code:
Temp VAR WORD
Then, modify the print routine as follow.

Code:
Print2LCD
  
    FOR Ndx=0 to 18
        Temp = Tst_Array[Ndx]       
        HSEROUT [Temp.LowByte,Temp.HighByte ]
    NEXT Ndx
    
RETURN