second: move some things around

This commit is contained in:
Vince Weaver 2023-10-06 01:01:02 -04:00
parent ab1d8992dc
commit 35b0f4a87c
5 changed files with 22 additions and 3 deletions

View File

@ -14,7 +14,7 @@ FAKE_BIOS: fake_bios.o
ld65 -o FAKE_BIOS fake_bios.o -C $(LINKER_SCRIPTS)/apple2_6000.inc
fake_bios.o: fake_bios.s \
hgr_clear_screen.s \
../hgr_clear_screen.s ../hgr_table.s \
font_console_1x8.s fonts/a2_cga_thin.inc \
pt3_lib_detect_model.s ../lc_detect.s aux_detect.s \
65c02_detect.s ../pt3_lib_mockingboard_detect.s \

View File

@ -516,7 +516,7 @@ graphics_data:
hposn_low = $1713 ; 0xC0 bytes (lifetime, used by DrawLargeCharacter)
hposn_high = $1800 ; 0xC0 bytes (lifetime, used by DrawLargeCharacter)
.include "hgr_table.s"
.include "../hgr_table.s"
wait_until_keypress:
@ -750,7 +750,7 @@ early_out:
.include "hgr_clear_screen.s"
.include "../hgr_clear_screen.s"
.include "pt3_lib_detect_model.s"
.include "../lc_detect.s"

View File

@ -7,6 +7,9 @@
.include "../hardware.inc"
.include "../qload.inc"
hposn_low = $1713 ; 0xC0 bytes (lifetime, used by DrawLargeCharacter)
hposn_high = $1800 ; 0xC0 bytes (lifetime, used by DrawLargeCharacter)
intro_start:
;=====================
; initializations
@ -22,6 +25,20 @@ load_loop:
bit FULLGR
bit PAGE1
lda #0
jsr hgr_page1_clearscreen
jsr build_tables
; for pan
; code at $6000
; left page for $2000 at top, we can overwrite
; right page at $a000
; uncompress to $2000 at first
; then algorithm alternating pages
; left logo
lda #<intro_left_data
@ -74,6 +91,8 @@ blah:
.align $100
.include "../wait_keypress.s"
.include "../zx02_optim.s"
.include "../hgr_table.s"
.include "../hgr_clear_screen.s"
intro_left_data:
.incbin "graphics/igl.hgr.zx02"