We've just updated MediaWiki and its underlying software. If anything doesn't look or work quite right, please mention it to us. --RanAS

N-SPC Engine/Nintendo

From SnesLab
Revision as of 03:50, 13 November 2020 by KungFuFurby (talk | contribs) (Updating F-Zero SFX notes)
Jump to: navigation, search

Go back to N-SPC Engine
If you're looking for Super Mario World or Pilotwings, see the Prototype variant instead.

NOTE: The following page is a stub, and is under construction.

Nintendo is the first user of the N-SPC engine, both at launch and with the prototype variant. There are a variety of game-specific or programmer-specific cases in here, and thus have been sorted accordingly.

The raw build sorting notes can be found here for all variants by Nintendo.

TODO most other Nintendo games

F-Zero

This is the first released game to use the standard N-SPC VCMD set starting at $E0. VCMDs $FB-$FF don't exist, though, and the fast forward phrase commands also don't exist here.

Game Name VCMD Table Location ($E0 and up) ROM Offset
F-Zero 0x0EE9, relative to 0x0E29 0x01E538 (US & Japanese versions)
0x01841E (European version)

Communication with the SNES

Each CPUIO register has its own individual usage.

CPUIO0 ($2140/$F4)

Command ID Description
%xyyzzzzz Play Music/Looping SFX/Second Engine Control
$FF Load New Data
Play Music/Looping SFX/Second Engine Control (Command $00-$FE)

Input

%xyyyzaaa

Output

%00000aaa
  • x, when set, fades out the music over 84 tempo ticks. It causes music VCMD $F5 (echo enable bits and volume) to effectively act as a NOP when this happens.
  • yyy is a looping SFX ID for channel 6, with a range of %001($1)-%100($4), and looping back to $1 after $4. Except for $3, they also don't restore the instrument ID after playing them.
  • z, when set, causes the BRR engine noise generator from $2143/$F7 to output on channels 4-7.
  • aaa is a music ID that is output to the SNES via $2140. %110($6) is a special case, as it utilizes an ID that is defined via loading a single byte to a specific memory location, rather than its own (the ID itself is illegal if forced due to a zero pointer). Music data does not actually need to be loaded in this particular case, as it is all stored in one go.
Load New Data (Command $FF)

Loads new data when set to $FF. See the source build's Load New Data command for the loading protocol, as it is identical binary-wise to the copy used in this one minus the *Ver S1.20* string.

CPUIO1 ($2141/$F5)

Input

%xyzzzzzz

Output

%00zzzzzz
  • x increases the overall BRR engine noise generator frequency on channel 8. The BRR engine noise generator frequency is designed to hiccup like a gearshift when activating.
  • y plays a continuous beeping tone on channel 6... unless the music that's currently playing is $11, which means a different SFX plays on channels 6 and 8.
  • zzzzzz controls the BRR engine noise generator frequency on channel 8. Disable with zero. This value is what is output to the SNES via $2141.

CPUIO2 ($2142/$F6)

%xyzzaaaa

The value output to the SNES via $2142 is which bits are being utilized to play the SFX. Higher bits have more priority, but CPUIO0's channel 6 SFX has higher priority, which in turn is out-prioritized by CPUIO1's channel 6 SFX.

  • x stops the music and goes BOOM! Channels 3-8 are used, with 5-8 being continuously used afterwards.
  • y plays a UFO-like SFX on channel 6.
  • zz controls the BRR engine noise with vibrato on channel 6.
  • aaaa controls incidental SFX on channel 6. $4 doesn't play anthing, and the values wrap around to $1 after $8, except for $C, which plays $8.

CPUIO3 ($2143/$F7)

Input

%xxxxyyyy

Output

%0000xxxx
  • xxxx controls the panning of the second vehicle on channel 7, with zero representing left and $E representing right. Sets up a whole bunch of vehicle noises on channels 4-7 if set to $F instead that are not pitch-controllable. These bits are output to the SNES via $2143 as the lowest four bits.
  • yyyy controls the BRR engine noise generator frequency (and volume) of the second vehicle on channel 7, or several at once on channels 1-5 and 7 if bit z on $2140/$F4 is set.

SFX Sequence Format

Most of the SFX is hard-coded and the instrument format, when utilized outside of the actual instrument table, is identical to a music instrument's. The only SFX that actually uses a SFX sequence format beyond an array of notes is CPUIO0's bit yyy ID %010 ($2) (there's actually a second one defined, but it appears to never have been used).

TODO SFX sequence format (roughly the same as the Prototype variant, except with different supported VCMDs and with VCMD $FF doing the same thing as Pilotwings: restarting the SFX)

Aging Cassette/Sound Module and Burn-In Test

Game Name VCMD Table Location ($E0 and up) ROM Offset
Aging Cassette/Sound Module and Burn-In Test 0x0EE9, relative to 0x0E29 0x0380BA (Aging Cassette)
0x038792 (SNES Burn-In Test Cartridge)

Voice Command Format

TODO new music VCMDs (the standard set is offset backwards by two IDs, and three new VCMDs are added on)

Communication with the SNES

TODO identical to standard Kankichi/N-SPC except for new commands at $80, $90-$93, of which $80 does $90-$93's commands as well as provide output


TODO all other Nintendo variant games (that aren't known to be associated with other Nintendo variant games and likely have sound driver command differences between each other)