How should I enter ints 16 bit signed values? like following?

Code:
    Hserout [0]
    Hserout [0]

    Hserout [0]
    Hserout [0]

    Hserout [10]
    Hserout [0]

    Hserout [0]
    Hserout [0]

New Code with config:

Code:
DEFINE LOADER_USED 1
DEFINE HSER_RCSTA 90h
DEFINE HSER_TXSTA 24h
DEFINE HSER_BAUD 115200
DEFINE HSER_SPBRG 7 ' 115200 Bauds
DEFINE HSER_CLOERR 1
DEFINE OSC 16

TRISC.0 = 0
TRISC.6 = 0
TRISC.7 = 1

LED VAR PORTC.0  

    Hserout ["$$$"]   'command mode Serial.print("$$$");

mainloop:
    
    high LED
    
    Hserout [$FD]
    Hserout [$05]
    Hserout [$02]
    Hserout [0]
    Hserout [0]
    Hserout [10]
    Hserout [0]
   
   Pause 1000
   
   low LED
   Pause 1000 
   Goto mainloop
Thanks again for the help! I am stuck!