mirror of
https://github.com/deater/dos33fsprogs.git
synced 2025-02-24 11:29:18 +00:00
second: hook up more graphics
This commit is contained in:
parent
33085807fe
commit
1fabebdd3a
@ -22,6 +22,40 @@ load_loop:
|
|||||||
bit FULLGR
|
bit FULLGR
|
||||||
bit PAGE1
|
bit PAGE1
|
||||||
|
|
||||||
|
; left logo
|
||||||
|
|
||||||
|
lda #<intro_left_data
|
||||||
|
sta zx_src_l+1
|
||||||
|
|
||||||
|
lda #>intro_left_data
|
||||||
|
sta zx_src_h+1
|
||||||
|
|
||||||
|
lda #$20
|
||||||
|
|
||||||
|
jsr zx02_full_decomp
|
||||||
|
|
||||||
|
jsr wait_until_keypress
|
||||||
|
|
||||||
|
|
||||||
|
; right logo
|
||||||
|
|
||||||
|
lda #<intro_right_data
|
||||||
|
sta zx_src_l+1
|
||||||
|
|
||||||
|
lda #>intro_right_data
|
||||||
|
sta zx_src_h+1
|
||||||
|
|
||||||
|
lda #$20
|
||||||
|
|
||||||
|
jsr zx02_full_decomp
|
||||||
|
|
||||||
|
jsr wait_until_keypress
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
; fc logo
|
||||||
|
|
||||||
lda #<fc_sr_logo_data
|
lda #<fc_sr_logo_data
|
||||||
sta zx_src_l+1
|
sta zx_src_l+1
|
||||||
|
|
||||||
@ -34,11 +68,17 @@ load_loop:
|
|||||||
|
|
||||||
jsr wait_until_keypress
|
jsr wait_until_keypress
|
||||||
|
|
||||||
|
blah:
|
||||||
|
jmp blah
|
||||||
|
|
||||||
.align $100
|
.align $100
|
||||||
.include "../wait_keypress.s"
|
.include "../wait_keypress.s"
|
||||||
.include "../zx02_optim.s"
|
.include "../zx02_optim.s"
|
||||||
|
|
||||||
|
intro_left_data:
|
||||||
|
.incbin "graphics/igl.hgr.zx02"
|
||||||
|
intro_right_data:
|
||||||
|
.incbin "graphics/igr.hgr.zx02"
|
||||||
fc_sr_logo_data:
|
fc_sr_logo_data:
|
||||||
.incbin "graphics/fc_sr_logo.hgr.zx02"
|
.incbin "graphics/fc_sr_logo.hgr.zx02"
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user