Working character output, non working return to home

This commit is contained in:
Daniele Verducci su MatissePenguin
2021-01-25 08:46:01 +01:00
parent 9de4753984
commit 154e4dc10c
3 changed files with 71 additions and 38 deletions

View File

@@ -31,10 +31,3 @@ comm_init:
brne comm_wait_byte ; if not 0, repeat h_picture_loop
jmp comm_init ; filled all memory: reset framebuffer position
; Sets the cursor to 0,0 and clears fine position
cursor_pos_home:
; Set Y to framebuffer start
ldi YH, high(FRAMEBUFFER<<1)
ldi YL, low(FRAMEBUFFER<<1)
clr POS_FINE
ret