
Originally Posted by
Darrel Taylor
These answers are so easy.
Why do they always turn into personal attacks.
If they don't get it. Explain it again.
Maybe your version will make more sense.
<br>
No personal attack intended. I thought post #32 explained it...
There are 8 memory locations on most LCDs, starting at $40 and ending at $78. Each custom character will be at one of these locations.
character 0 = $40
character 1= $48
character 2 = $50
character 3= $58
character 4 = $60
character 5= $68
character 6 = $70
character 7= $78
In your code
Code:
lcdout $fe,$40,$08,$04,$02,$01,$01,$02,$04,$08
writes your character to "0" position. or character 0
To display that character on the first line, first space
second space
If you have a character in the second memory location
lcdout $fe,$48,$08,$04,$02,$01,$01,$02,$04,$08
To display that character on the first line, first space
second space
Bookmarks