This commit is contained in:
Daniele Verducci su MatissePenguin
2021-01-26 20:52:53 +01:00
parent 64da85548e
commit 9d6e6efd13
2 changed files with 16 additions and 9 deletions

View File

@@ -53,7 +53,10 @@ draw_char:
; Sets the cursor to 0,0 and clears fine position
cursor_pos_home:
; Set Y to framebuffer start
ldi YH, high(FRAMEBUFFER)
ldi YL, low(FRAMEBUFFER)
;ldi YH, high(FRAMEBUFFER)
;ldi YL, low(FRAMEBUFFER)
ldi YH, high(0x0068)
ldi YL, low(0x0068)
clr POS_FINE
ret
ret