6502-OS/system/chars.h65

27 lines
349 B
Plaintext
Raw Normal View History

2023-12-16 02:44:47 +01:00
.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