Prev: BD51 Up: Map Next: BD79
BD6E: Play Audio
Used by the routines at GameInitialisation, GameComplete, HandlerPoems and GameOver_1UP.
Input
DE Music data terminated by FF
PlayAudio BD6E DI Disable interrupts.
PlayAudio_Loop BD6F LD A,(DE) Fetch the next byte of music data.
BD70 CP $FF If this is FF (the terminator) then jump to PlayAudio_Return.
BD72 JR Z,PlayAudio_Return
BD74 CALL PlayAudio_Process Call PlayAudio_Process.
BD77 JR PlayAudio_Loop Jump to PlayAudio_Loop.
Prev: BD51 Up: Map Next: BD79