27 lines
349 B
Plaintext
27 lines
349 B
Plaintext
|
.ifndef INCLUDE_CHARS
|
||
|
INCLUDE_CHARS = 1
|
||
|
|
||
|
.include "system.h65"
|
||
|
|
||
|
.scope chars
|
||
|
|
||
|
ARROW_RIGHT = $7E
|
||
|
ARROW_LEFT = $7F
|
||
|
DOT = $A5
|
||
|
|
||
|
Import chars, CAT, SMILEY, SMILEY_XD
|
||
|
|
||
|
.macro SetCustomChar charaddr,asciinr
|
||
|
lda #<charaddr
|
||
|
sta ARG0
|
||
|
lda #>charaddr
|
||
|
sta ARG1
|
||
|
lda #asciinr
|
||
|
jsr lcd::set_custom_char
|
||
|
.endmacro
|
||
|
|
||
|
|
||
|
.endscope
|
||
|
|
||
|
.endif
|