forked from brooke/mandel-6502
moving the framebuffer into the basic space
fails on 130xe and 800xl for some reason works on 800 as expected
This commit is contained in:
parent
883f926e57
commit
acac5a8df4
2 changed files with 8 additions and 7 deletions
10
mandel.s
10
mandel.s
|
|
@ -62,11 +62,11 @@ FST0R = $DDA7 ; STORE FR0 IN USER BUFFER (YYXX)
|
|||
FMOVE = $DDB6 ; MOVE FR0 TO FR1
|
||||
|
||||
; High data
|
||||
framebuffer_top = $8000
|
||||
textbuffer = $8f00
|
||||
framebuffer_bottom = $9000
|
||||
display_list = $9f00
|
||||
framebuffer_end = $a000
|
||||
framebuffer_top = $a000
|
||||
textbuffer = $af00
|
||||
framebuffer_bottom = $b000
|
||||
display_list = $bf00
|
||||
framebuffer_end = $c000
|
||||
|
||||
height = 184
|
||||
half_height = height >> 1
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue