WooHoo!

Don't know if you're using more than 1 of them, but if you want to access all 3 as an array, you can also do something like this...
Code:
@CAP = CAP3BUFL
CAP    VAR WORD EXT
CAPBUF VAR WORD
Index  VAR BYTE 

FOR Index = 1 to 3
    CAPBUF = CAP(3-Index)
    HSEROUT ["CAP",DEC1 Index,"= ",DEC CAPBUF,13,10] 
NEXT Index
It would have been easier if they hadn't put them in reverse order in RAM.