pato-z80-home-computer/assembly/bios/driver_hd44780.asm

49 lines
1.1 KiB
NASM
Raw Normal View History

2020-10-27 20:08:07 +01:00
; HD44780 20x4 characters LCD display driver
; @author Daniele Verducci
2020-10-26 22:05:03 +01:00
2020-10-24 23:30:50 +02:00
2020-10-27 20:08:07 +01:00
; functions
2020-10-24 23:30:50 +02:00
lcd_init:
;reset procedure
2020-10-26 22:05:03 +01:00
ld a,0x38
2020-10-24 23:30:50 +02:00
out (LCD_INSTR_REG),a
2020-10-26 22:05:03 +01:00
ld a,0x08
2020-10-24 23:30:50 +02:00
out (LCD_INSTR_REG),a
2020-10-26 22:05:03 +01:00
ld a,0x01
2020-10-24 23:30:50 +02:00
out (LCD_INSTR_REG),a
;init procedure
2020-10-26 22:05:03 +01:00
ld a,0x38
2020-10-24 23:30:50 +02:00
out (LCD_INSTR_REG),a
2020-10-26 22:05:03 +01:00
ld a,0x0F
2020-10-24 23:30:50 +02:00
out (LCD_INSTR_REG),a
ret
2020-10-26 22:05:03 +01:00
; Writes text starting from current cursor position
; @param BC Pointer to a null-terminated string first character
2020-10-27 20:08:07 +01:00
lcd_print:
2020-10-24 23:30:50 +02:00
ld a, (bc) ; bc is the pointer to passed string's first char
cp 0 ; compare A content with 0 (subtract 0 from value and set zero flag Z if result is 0)
ret z ; if prev compare is true (Z flag set), string is finished, return
out (LCD_DATA_REG),a ; output char
inc bc ; increment bc to move to next char
2020-10-27 20:08:07 +01:00
jp lcd_print
2020-10-24 23:30:50 +02:00
2020-10-26 22:05:03 +01:00
; Set cursor position
; @param B X-axis position (0 to 19)
; @param C Y-axis position (0 to 3)
lcd_locate:
; TODO
ret
; Clears the screen
lcd_cls:
ld a,0x01
out (LCD_INSTR_REG),a ; clear display
ld a,0x02
out (LCD_INSTR_REG),a ; cursor to home (top left)
ret