Hello is there a way to use LCDOUT with a long variable?
DEFINE X VAR LONG
LCDOUT $FE, LINE1, #X
It appears to always convert the variable to a WORD then outputs it
Printable View
Hello is there a way to use LCDOUT with a long variable?
DEFINE X VAR LONG
LCDOUT $FE, LINE1, #X
It appears to always convert the variable to a WORD then outputs it
Hi,
Your variable declaration is wrong and it seems as if the # operator doesn't support LONGs, use DEC instead/Henrik.Code:X VAR LONG
X = 1234567
LCDOUT $FE, 1, DEC X
Hi,
I think that SDEC instead of DEC will solve your problem!
Thank you, SDEC works!
Thanks for the tip ...