There are a lot of different ways to send variables, depends on what you need to do.
<pre>DEBUG B0 ; Binary Data<br>DEBUG DEC B0 ; ASCII Decimal format<br>DEBUG BIN B0 ; ASCII Binary <br>DEBUG HEX B0 ; ASCII Hexadecimal</pre>Then there are all the variations of the above like ... IDEC, SDEC DEC3, IDEC5, etc.
The ASCII functions will work with either Bytes or Words, but if you want to send a WORD in "Binary Data" format, you have do each byte seperately<pre>DEBUG W0.byte0, W0.byte1</pre>hth,
Bookmarks