Hi,
I have a keypad and an LCD.
My keypad's scanning rutine returns a key (0 to 9).
I'd like to display each digit (as I press the key on the keypad) next to the previous one.

For example:
After pressing digit 3 the LCD will read: 3
Then I press digit 6, the LCD now reads 36
then I press digit 4, the LCD now reads 364 and so on


For some reason I can't do that. I've only been able to display one digit at a time by clearing the display first:

Code:
Lcdout $FE, 1, #key
but I really want to show them together as they're being pressed.

Please help