There's also DIG in the list.
There's also DIG in the list.
Steve
It's not a bug, it's a random feature.
There's no problem, only learning opportunities.
Thanks Mackrackit,
Can you explain what you have suggested a little better so I can understand.
thanks
Darren
I can try, but that cold med I took is having fun with with me
LCDOUT $FE,$C0,
display line two.
DEC numVar /100
displays the value of numVar
"."
makes a "."
DEC2 numVar //100
displays only two digits of the remainder of numVar divided by 100
The math section and SEROUT2 section of the manual will explain it better I am afraid.
Dave
Always wear safety glasses while programming.
DEC will show the whole decimal number , while DEC2 will show only the 2 less significant one.
MyVar=1234
DEC MyVar =>1234
DEC2 Myvar => 34
DEC3 MyVar => 234
etc
Steve
It's not a bug, it's a random feature.
There's no problem, only learning opportunities.
Bookmarks