move 8 scan lines on the bottom to status bar
This commit is contained in:
parent
25da81c64b
commit
26d612b6f3
1 changed files with 5 additions and 1 deletions
6
mandel.s
6
mandel.s
|
@ -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:
|
||||
|
|
Loading…
Reference in a new issue