
Originally Posted by
timmers
Could it not be as simple as:-
COUNTER VAR WORD
COUNTER_H VAR COUNTER.BYTE1 'high byte
COUNTER_L VAR COUNTER.BYTE0 'low byte
LCDOUT $FE,128,DEC4 COUNTER 'top row, position 1.
Tim.
Hi, You were not so far ...
Code:
COUNTER VAR WORD
COUNTER.Highbyte = EEPROM_READ1 'high byte ( note: EEPROM_READ1 or value1, or ...xxx1)
COUNTER.Lowbyte = EEPROM_READ2 'low byte
LCDOUT $FE,128,DEC4 COUNTER 'top row, position 1.
No multiplying necessary ...
Alain
Last edited by Acetronics2; - 10th March 2009 at 09:06.
************************************************** ***********************
Why insist on using 32 Bits when you're not even able to deal with the first 8 ones ??? ehhhhhh ...
************************************************** ***********************
IF there is the word "Problem" in your question ...
certainly the answer is " RTFM " or " RTFDataSheet " !!!
*****************************************
Bookmarks