mirror of
https://github.com/deater/dos33fsprogs.git
synced 2025-02-09 03:31:05 +00:00
20 lines
287 B
ArmAsm
20 lines
287 B
ArmAsm
|
;=============================
|
||
|
; mist_link_book
|
||
|
;=============================
|
||
|
mist_link_book:
|
||
|
|
||
|
; play sound effect?
|
||
|
|
||
|
lda #<audio_link_noise
|
||
|
sta BTC_L
|
||
|
lda #>audio_link_noise
|
||
|
sta BTC_H
|
||
|
ldx #43 ; 45 pages long???
|
||
|
jsr play_audio
|
||
|
|
||
|
lda #1
|
||
|
sta LOCATION
|
||
|
jsr change_location
|
||
|
rts
|
||
|
|