Skip to navigation

Elite on the BBC Micro and NES

Sound: MakeScoopSound

[NES version, Bank 7]

Name: MakeScoopSound [Show more] Type: Subroutine Category: Sound Summary: Make the sound of the fuel scoops working
Context: See this subroutine in context in the source code References: This subroutine is called as follows: * Main flight loop (Part 8 of 16) calls MakeScoopSound * Main flight loop (Part 15 of 16) calls MakeScoopSound
.MakeScoopSound LDY #1 ; Call the NOISE routine with Y = 1 to make the sound of BNE NOISE ; the fuel scoops working, returning from the subroutine ; using a tail call (this BNE is effectively a JMP as Y ; will never be zero)