mirror of
https://github.com/hsoft/collapseos.git
synced 2024-11-24 03:28:07 +11:00
ti/lcd: ensure that variables are initialized
This commit is contained in:
parent
a3c47f6272
commit
6a4bddc493
@ -19,6 +19,7 @@
|
|||||||
.equ LCD_CMD_XINC 0x05
|
.equ LCD_CMD_XINC 0x05
|
||||||
.equ LCD_CMD_YINC 0x07
|
.equ LCD_CMD_YINC 0x07
|
||||||
.equ LCD_CMD_COL 0x20
|
.equ LCD_CMD_COL 0x20
|
||||||
|
.equ LCD_CMD_ZOFFSET 0x40
|
||||||
.equ LCD_CMD_ROW 0x80
|
.equ LCD_CMD_ROW 0x80
|
||||||
.equ LCD_CMD_CONTRAST 0xc0
|
.equ LCD_CMD_CONTRAST 0xc0
|
||||||
|
|
||||||
@ -30,6 +31,10 @@
|
|||||||
|
|
||||||
; *** Code ***
|
; *** Code ***
|
||||||
lcdInit:
|
lcdInit:
|
||||||
|
; Initialize variables
|
||||||
|
xor a
|
||||||
|
ld (LCD_CURROW), a
|
||||||
|
|
||||||
; Enable the LCD
|
; Enable the LCD
|
||||||
ld a, LCD_CMD_ENABLE
|
ld a, LCD_CMD_ENABLE
|
||||||
call lcdWait
|
call lcdWait
|
||||||
|
Loading…
Reference in New Issue
Block a user