furnace/doc/7-systems/snes.md

80 lines
4 KiB
Markdown
Raw Normal View History

2022-10-16 01:53:05 -04:00
# Super Nintendo Entertainment System (SNES)/Super Famicom
2022-03-21 03:38:12 -04:00
2022-10-16 01:53:05 -04:00
the successor to NES to compete with Genesis, packing superior graphics and sample-based audio.
2022-03-21 03:38:12 -04:00
2022-10-16 01:53:05 -04:00
its audio system, developed by Sony, features a DSP chip, SPC700 CPU and 64KB of dedicated SRAM used by both.
this whole system itself is pretty much a separate computer that the main CPU needs to upload its program and samples to.
2022-03-21 03:38:12 -04:00
2022-10-16 01:53:05 -04:00
Furnace communicates with the DSP directly and provides a full 64KB of memory. this memory might be reduced excessively on ROM export to make up for playback engine and pattern data. you can go to window > statistics to see how much memory your samples are using.
2022-03-21 03:38:12 -04:00
2022-10-16 01:53:05 -04:00
some notable features of the DSP are:
- pitch modulation, meaning that you can use 2 channels to make a basic FM synth without eating up too much memory.
- a built in noise generator, useful for hi-hats, cymbals, rides, effects, among other things.
- per-channel echo, which unfortunately eats up a lot of memory but can be used to save channels in songs.
- an 8-tap FIR filter for the echo, which is basically a procedural low-pass filter that you can edit however you want.
- sample loop, but the loop points have to be multiples of 16.
- left/right channel invert for surround sound.
- ADSR and gain envelope modes.
- 7-bit volume per channel.
- sample interpolation, which is basically a low-pass filter that gets affected by the pitch of the channel.
2022-10-08 13:15:05 -04:00
2022-10-16 01:53:05 -04:00
Furnace also allows the SNES to use wavetables (and the wavetable synthesizer) in order to create more 'animated' sounds, using less memory than regular samples. this however is not a hardware feature, and might be difficult to implement on real hardware.
2022-03-21 03:38:12 -04:00
# effects
- `10xx`: **set waveform.**
- `11xx`: **toggle noise mode.**
- `12xx`: **toggle echo on this channel.**
- `13xx`: **toggle pitch modulation.**
- `14xy`: **toggle inverting the left or right channels.** (x: left, y: right).
- `15xx`: **set envelope mode.**
2022-10-16 01:53:05 -04:00
- 0: ADSR.
- 1: gain (direct).
- 2: linear decrement.
- 3: exponential decrement.
- 4: linear increment.
- 5: bent line (inverse log) increment.
- `16xx`: **set gain.** `00` to `7F` if direct, `00` to `1F` otherwise.
- `18xx`: **enable echo buffer.**
- `19xx`: **set echo delay.** range is `0` to `F`.
- `1Axx`: **set left echo channel volume.**
2022-10-16 01:53:05 -04:00
- this is a signed number.
- `00` to `7F` for 0 to 127.
- `80` to `FF` for -128 to -1.
2022-10-16 01:53:05 -04:00
- setting this to -128 is not recommended as it may cause echo output to overflow and therefore click.
- `1Bxx`: **set right echo channel volume.**
2022-10-16 01:53:05 -04:00
- this is a signed number.
- `00` to `7F` for 0 to 127.
- `80` to `FF` for -128 to -1.
2022-10-16 01:53:05 -04:00
- setting this to -128 is not recommended as it may cause echo output to overflow and therefore click.
- `1Cxx`: **set echo feedback.**
2022-10-16 01:53:05 -04:00
- this is a signed number.
- `00` to `7F` for 0 to 127.
- `80` to `FF` for -128 to -1.
2022-10-16 01:53:05 -04:00
- setting this to -128 is not recommended as it may cause echo output to overflow and therefore click.
- `1Dxx`: **set noise generator frequency.** range is `00` to `1F`.
- `1Exx`: **set left dry / global volume.**
- this does not affect echo.
- `1Fxx`: **set right dry / global volume.**
- this does not affect echo.
- `20xx`: **set attack.** range is `0` to `F`.
2022-10-16 01:53:05 -04:00
- only in ADSR envelope mode.
- `21xx`: **set decay.** range is `0` to `7`.
2022-10-16 01:53:05 -04:00
- only in ADSR envelope mode.
- `22xx`: **set sustain.** range is `0` to `7`.
2022-10-16 01:53:05 -04:00
- only in ADSR envelope mode.
- `23xx`: **set release.** range is `00` to `1F`.
2022-10-16 01:53:05 -04:00
- only in ADSR envelope mode.
- `30xx`: **set echo filter coefficient 0.**
- `31xx`: **set echo filter coefficient 1.**
- `32xx`: **set echo filter coefficient 2.**
- `33xx`: **set echo filter coefficient 3.**
- `34xx`: **set echo filter coefficient 4.**
- `35xx`: **set echo filter coefficient 5.**
- `36xx`: **set echo filter coefficient 6.**
- `37xx`: **set echo filter coefficient 7.**
2022-10-16 01:53:05 -04:00
- all of these are signed numbers.
- `00` to `7F` for 0 to 127.
- `80` to `FF` for -128 to -1.
- _Note:_ Be sure the sum of all coefficients is between -128 and 127. sums outside that may result in overflow and therefore clicking.