mirror of
https://github.com/deater/dos33fsprogs.git
synced 2024-11-01 01:06:33 +00:00
4010a84b9f
need to disable some sound temporarily as out of room if we leave LOADER in memory
25 lines
252 B
ArmAsm
25 lines
252 B
ArmAsm
|
|
|
|
end_level:
|
|
|
|
; set WHICH_LOAD first
|
|
|
|
bit TEXTGR
|
|
jsr clear_bottom
|
|
|
|
lda #<loading_message
|
|
sta OUTL
|
|
lda #>loading_message
|
|
sta OUTH
|
|
|
|
jsr move_and_print
|
|
|
|
jsr page_flip
|
|
|
|
; exit back to loader
|
|
|
|
rts
|
|
|
|
loading_message:
|
|
.byte 0,20,"LOADING...",0
|