dos33fsprogs/games/peasant/title.s

54 lines
735 B
ArmAsm
Raw Normal View History

2021-08-12 01:45:31 +00:00
; o/~ It's the Title Screen, Yes it's the Title Screen o/~
2021-08-11 23:29:47 +00:00
2021-08-12 01:45:31 +00:00
; by Vince `deater` Weaver vince@deater.net
.include "hardware.inc"
.include "zp.inc"
title:
jsr HGR2 ; Hi-res graphics, no text at bottom
; Y=0, A=0 after this called
2021-08-11 23:29:47 +00:00
;************************
; Title
;************************
2021-08-12 01:45:31 +00:00
do_title:
2021-08-11 23:29:47 +00:00
lda #<(title_lzsa)
sta getsrc_smc+1
lda #>(title_lzsa)
sta getsrc_smc+2
lda #$40
jsr decompress_lzsa2_fast
jsr wait_until_keypress
2021-08-12 01:45:31 +00:00
;************************
; Tips
;************************
jsr directions
lda #LOAD_PEASANT
sta WHICH_LOAD
2021-08-11 23:29:47 +00:00
rts
2021-08-12 01:45:31 +00:00
.include "decompress_fast_v2.s"
.include "wait_keypress.s"
.include "directions.s"
.include "hgr_font.s"
.include "graphics_title/title_graphics.inc"