mirror of
https://github.com/deater/dos33fsprogs.git
synced 2024-11-19 12:32:35 +00:00
51 lines
637 B
ArmAsm
51 lines
637 B
ArmAsm
; And Believe Me, I'm Still Alive
|
|
|
|
.include "zp.inc"
|
|
|
|
still_alive:
|
|
jsr still_alive_mb
|
|
jsr still_alive_ed
|
|
|
|
|
|
|
|
;==========
|
|
; main code
|
|
;==========
|
|
|
|
.include "sa_mb.s"
|
|
.include "sa_ed.s"
|
|
|
|
;=========
|
|
;routines
|
|
;=========
|
|
.include "../asm_routines/gr_offsets.s"
|
|
.include "../asm_routines/mockingboard_a.s"
|
|
.include "../asm_routines/lz4_decode.s"
|
|
|
|
.include "display_art.s"
|
|
.include "display_lyrics.s"
|
|
|
|
.include "interrupt_handler.s"
|
|
|
|
.include "duet.s"
|
|
|
|
;=========
|
|
; strings
|
|
;=========
|
|
|
|
|
|
lyrics:
|
|
.include "lyrics.inc"
|
|
|
|
lyrics_ed:
|
|
.include "sa.edlyrics"
|
|
|
|
.include "ascii_art.inc"
|
|
|
|
LZ4_BUFFER:
|
|
.incbin "SA.KR4"
|
|
|
|
music_address:
|
|
.incbin "SA.ED"
|
|
|