dos33fsprogs/mist/link_book_mist_dock.s
Vince Weaver 603313cf27 mist: move initial entry screen to title
also modularize the linking book sound
2020-03-19 13:55:29 -04:00

37 lines
468 B
ArmAsm

;=============================
; mist_link_book
;=============================
mist_link_book:
; clear screen
lda #0
sta clear_all_color+1
jsr clear_all
jsr page_flip
jsr clear_all
jsr page_flip
; play sound effect?
lda #<linking_noise
sta BTC_L
lda #>linking_noise
sta BTC_H
ldx #LINKING_NOISE_LENGTH ; 45 pages long???
jsr play_audio
lda #1
sta LOCATION
lda #LOAD_MIST ; start at Mist
sta WHICH_LOAD
lda #$ff
sta LEVEL_OVER
rts