Boot music: Difference between revisions

From NeoGeo Development Wiki
Jump to navigation Jump to search
m (BIOS -> system ROM)
m (Score)
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
From SNK doc:
The boot music is the famous jingle played during the [[eyecatcher]] at startup, and often during the [[attract sequence]].


YM5F.SRC "Eye catch music data file"
The music is only played when the flag byte at [[68k program header|$114]] is = 0. The [[System ROM]] always uses [[68k/Z80 communication|code 2]] to play it.


[[Sound driver|Sound code]]: $02.
Many games remap and/or add instruments (different instruments in [[Blue's Journey]], drum loop in [[Neo Bomberman]] for example), but all games seem to use the same melody.


Only called by the [[System ROM]] when $114 = 0 (see [[68k program header]]).
[[File:Ngbootmusic.png]]
 
The original music is [[YM2610|FM]] only and uses all 4 channels as 2 pairs of "echo" channels (2 melodies only, each being played with a slight delay). It's played at 192 BPM and uses down to 1/32 notes.


[[Category:Audio system]]
[[Category:Audio system]]

Latest revision as of 01:11, 29 May 2016

The boot music is the famous jingle played during the eyecatcher at startup, and often during the attract sequence.

The music is only played when the flag byte at $114 is = 0. The System ROM always uses code 2 to play it.

Many games remap and/or add instruments (different instruments in Blue's Journey, drum loop in Neo Bomberman for example), but all games seem to use the same melody.

The original music is FM only and uses all 4 channels as 2 pairs of "echo" channels (2 melodies only, each being played with a slight delay). It's played at 192 BPM and uses down to 1/32 notes.