Hi,
Next free location would be 2 so
Code:
WRITE 2, TempB.Highyte
WRITE 3, TempB.LowByte
Or you can use the WORD modifier and let PBP handle the high/low byte stuff (I don't know in what order it writes it so either you look into that or you use the WORD modifier when you READ the data as well)
Code:
WRITE 0, WORD Numb
WRITE 2, WORD TempB
Or....
Code:
WRITE 0, WORD Numb, WORD TempB
/Henrik.