; I wrote an ASM patch! Yay? ; This patch makes the intro logo play castle music. ; Enjoy! ; (Also, remember to set the freespace.) ; - Zeldara109 Header LoROM org $0093C0 JSR $8148 ; Set music bank to level music (it's overworld by default) JSL Main NOP NOP NOP org $1FFFE0; freespace Main: LDA #$08 ; Music to play (08 is the castle theme) (don't set this to a custom music value if you're using Romi's addmusic (I haven't tested it with the others)) STA $1DFB LDA #$48 ; Time to wait before loading title screen STA $1DF5 RTL