trogdor: fix possible glitch

in some cases glitches if we have code in $BF00

I forget if that's a limitation of QLOAD

in any case, moving it out of the way fixes MAME (and also occasionally
real hardware)
This commit is contained in:
Vince Weaver 2024-01-30 00:19:57 -05:00
parent 4fa7d38942
commit 0fb6ec1d14
5 changed files with 6 additions and 6 deletions

View File

@ -83,8 +83,8 @@ qload.inc: generate_common QLOAD
./generate_common -a 0x1200 -s hgr_copy_part qload.lst >> qload.inc
./generate_common -a 0x1200 -s hgr_draw_sprite_big_mask qload.lst >> qload.inc
./generate_common -a 0x1200 -s horiz_pan qload.lst >> qload.inc
# ./generate_common -a 0x1200 -s hgr_vertical_scroll_right qload.lst >> qload.inc
# ./generate_common -a 0x1200 -s hgr_vertical_scroll_left qload.lst >> qload.inc
./generate_common -a 0x1200 -s hgr_vertical_scroll_right qload.lst >> qload.inc
./generate_common -a 0x1200 -s hgr_vertical_scroll_left qload.lst >> qload.inc
./generate_common -a 0x1200 -s horiz_pan_skip qload.lst >> qload.inc
./generate_common -a 0x1200 -s horiz_pan_skip_short qload.lst >> qload.inc
./generate_common -a 0x1200 -s hgr_copy_magnify qload.lst >> qload.inc

View File

@ -19,7 +19,7 @@ clear_screens:
jsr clear_bottom
rts
.endif
@ -75,7 +75,7 @@ no_draw_bottom:
rts ; 6
.endif
;=========================================================

View File

@ -213,7 +213,7 @@ hposn_high = $1f00
.include "horiz_scroll_simple.s"
.include "horiz_scroll_skip.s"
.include "hgr_copy_magnify.s"
; .include "vertical_scroll.s"
.include "vertical_scroll.s"
.include "hgr_copy_part.s"
.include "vertical_scroll_down.s"

Binary file not shown.

View File

@ -1262,4 +1262,4 @@ common_cottage:
;.include "wait_keypress.s"
;.include "hgr_copy_part.s"
.include "vertical_scroll.s"
;.include "vertical_scroll.s"