mirror of
https://github.com/deater/dos33fsprogs.git
synced 2024-12-27 17:29:49 +00:00
mist: verify meche age still works
This commit is contained in:
parent
eb2d702885
commit
a490c77f9e
@ -62,3 +62,22 @@ lzsa2 version
|
||||
36,324
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
Other: before loading link noise from disk
|
||||
|
||||
DISK VOLUME 254
|
||||
|
||||
A 003 HELLO
|
||||
B 004 LOADER
|
||||
B 035 MIST_TITLE
|
||||
B 156 MIST
|
||||
B 071 MECHE
|
||||
B 088 SELENA
|
||||
B 047 LINK_NOISE.BTC
|
||||
|
||||
101k
|
||||
|
||||
|
||||
|
@ -10,13 +10,27 @@ meche_link_book:
|
||||
jsr clear_all
|
||||
jsr page_flip
|
||||
|
||||
jsr clear_all
|
||||
jsr page_flip
|
||||
|
||||
;====================================
|
||||
; load linking audio (12k) to $9000
|
||||
|
||||
lda #<linking_filename
|
||||
sta OUTL
|
||||
lda #>linking_filename
|
||||
sta OUTH
|
||||
|
||||
jsr opendir_filename
|
||||
|
||||
|
||||
; play sound effect?
|
||||
|
||||
lda #<audio_link_noise
|
||||
lda #<linking_noise
|
||||
sta BTC_L
|
||||
lda #>audio_link_noise
|
||||
lda #>linking_noise
|
||||
sta BTC_H
|
||||
ldx #43 ; 45 pages long???
|
||||
ldx #LINKING_NOISE_LENGTH ; 45 pages long???
|
||||
jsr play_audio
|
||||
|
||||
lda #3
|
||||
@ -136,4 +150,5 @@ meche_sprite10:
|
||||
|
||||
|
||||
|
||||
|
||||
linking_filename:
|
||||
.byte "LINK_NOISE.BTC",0
|
||||
|
@ -189,7 +189,7 @@ really_exit:
|
||||
|
||||
|
||||
;.align $100
|
||||
audio_link_noise:
|
||||
.incbin "audio/link_noise.btc"
|
||||
;audio_link_noise:
|
||||
;.incbin "audio/link_noise.btc"
|
||||
|
||||
|
||||
|
@ -33,6 +33,7 @@ mist_start:
|
||||
sta CURSOR_Y
|
||||
|
||||
lda LOCATION
|
||||
cmp #1 ; FIXME
|
||||
bne not_first_time
|
||||
|
||||
; first time init
|
||||
|
Loading…
Reference in New Issue
Block a user