move 8 scan lines on the bottom to status bar

This commit is contained in:
Brooke Vibber 2025-02-21 19:42:10 -08:00
parent 25da81c64b
commit 26d612b6f3

View file

@ -80,7 +80,7 @@ framebuffer_bottom = $b000
display_list = $bf00
framebuffer_end = $c000
height = 184
height = 176
half_height = height >> 1
width = 160
half_width = width >> 1
@ -254,6 +254,10 @@ display_list_start:
.byte $0e
.endrep
; 8 scan lines, 1 row of 40-column text
.byte $42
.addr textbuffer + 40
.byte $41 ; jump and blank
.addr display_list
display_list_end: