APU: Difference between revisions

From NESdev Wiki
Jump to navigationJump to search
m (→‎Frame Counter ($4017): Correcting some of the data about the sequencer with updated information.)
m (Undo revision 3716 by Drag (talk) -- Nevermind, I just made it more confusing. They can check [[APU Frame Counter] if they want the super-technical explanation...)
Line 217: Line 217:
  ---------  -----------  -----------------------------
  ---------  -----------  -----------------------------
   - - - f    - - - - -    IRQ (if bit 6 is clear)
   - - - f    - - - - -    IRQ (if bit 6 is clear)
   - l - l    - l - - l   Length counter and sweep
   - l - l    l - l - -    Length counter and sweep
   e e e e    e e e - e   Envelope and linear counter
   e e e e    e e e e -    Envelope and linear counter


Both the 4 and 5-step modes operate at the same rate, but because the 5-step mode has an extra step, the effective update rate for individual units is slower in that mode (total update taking ~60Hz vs ~48Hz). Writing to $4017 will restart the sequence almost immediately (2 or 3 CPU cycles delay). Writing $4017 with bit 7 set will ''immediately'' generate an "e" clock and an "l" clock, regardless of what state the sequencer is in. Writing $4017 with bit 7 clear doesn't generate this extra clock, so the first clock will come from the first step of the sequence.
Both the 4 and 5-step modes operate at the same rate, but because the 5-step mode has an extra step, the effective update rate for individual units is slower in that mode (total update taking ~60Hz vs ~48Hz). Writing to $4017 will restart the sequence almost immediately (2 or 3 CPU cycles delay). Writing $4017 with bit 7 set will immediately clock all of its controlled units at the beginning of the 5-step sequence, but with bit 7 clear only the envelope and linear counter will be clocked.


Note that the frame counter is not exactly synchronized with the PPU [[NMI]]; it runs independently at a consistent rate which is approximately 240Hz. Some games (e.g. Super Mario Bros., Zelda) manually synchronize it by writing $C0 or $FF to $4017 once per frame.
Note that the frame counter is not exactly synchronized with the PPU [[NMI]]; it runs independently at a consistent rate which is approximately 240Hz. Some games (e.g. Super Mario Bros., Zelda) manually synchronize it by writing $C0 or $FF to $4017 once per frame.

Revision as of 04:31, 27 May 2012

The NES APU is the audio processing unit in the NES console which generates sound for games. It is implemented in the RP2A03 (NTSC) and RP2A07 (PAL) chips. Its registers are mapped in the range $4000-$4013, $4015 and $4017.

Overview

The APU has five channels: two pulse wave generators, a triangle wave, noise, and a delta modulation channel for playing DPCM samples.

Each channel has a variable-rate timer clocking a waveform generator, and various modulators driven by low-frequency clocks from the frame counter. The DMC plays samples while the other channels play waveforms. Each sub-unit of a channel generally runs independently and in parallel to other units, and modification of a channel's parameter usually affects only one sub-unit and doesn't take effect until that unit's next internal cycle begins.

The read/write status register allows channels to be enabled and disabled, and their current length counter status to be queried.

The outputs from all the channels are combined using a non-linear mixing scheme.

Notes

  • This reference describes the abstract operation of the APU. The exact hardware implementation is not necessarily relevant to an emulator, but the Visual 2A03 project can be used to determine detailed information about the hardware implementation.
  • The Famicom had an audio return loop on its catridge connector allowing extra audio from individual cartridges. See Expansion audio for details on the audio produced by various mappers.
  • The APU may have additional diagnostic features if CPU pin 30 is pulled high. See diagram by Quietust.

Specification

Registers

Registers Channel Units
$4000-$4003 Pulse 1 Timer, length counter, envelope, sweep
$4004-$4007 Pulse 2 Timer, length counter, envelope, sweep
$4008-$400B Triangle Timer, length counter, linear counter
$400C-$400F Noise Timer, length counter, envelope, linear feedback shift register
$4010-$4013 DMC Timer, memory reader, sample buffer, output unit
$4015 All Channel enable and length counter status
$4017 All Frame counter

Pulse ($4000-4007)

The pulse channels produce a variable-width pulse signal, controlled by volume, envelope, length, and sweep units.

$4000 / $4004 DDLC VVVV Duty (D), envelope loop / length counter disable (L), constant volume (C), volume/envelope (V)
$4001 / $4005 EPPP NSSS Sweep unit: enabled (E), period (P), negate (N), shift (S)
$4002 / $4006 TTTT TTTT Timer low (T)
$4003 / $4007 LLLL LTTT Length counter load (L), timer high (T)
  • The frequency of the pulse channels is a division of the CPU Clock (1.789773 MHz NTSC, 1.662607 PAL). The output frequency (f) of the generator can be determined by the 11-bit period value (t) written to $4002-4003/$4006-4007.
f = CPU / (16 * (t + 1))
t = (CPU / (16 * f)) - 1
  • The width of the pulse is controlled by the duty bits in $4000/4004. See APU Pulse for details.
  • The channel volume is a 4-bit value that is either constant, or controlled by an envelope (chosen by $4000/4004 bit 4). If using the envelope, the 4-bit value in $4000/4004 is the period of the envelope, otherwise it is the direct volume.
  • The length counter and envelope units are clocked by the frame counter. If the envelope is not looped, the length counter must be enabled (making it redundant if longer than the envelope). The length counter simply silences the channel when it counts down to 0. The envelope starts at a volume of 15 and decrements every time the unit is clocked, stopping at 0 if not looped.
  • Writing to $4003/4007 reloads the length counter, restarts the envelope, and resets the phase of the pulse generator. Because it resets phase, vibrato should only write the low timer register to avoid a phase reset click. At some pitches, particularly near A440, wide vibrato should normally be avoided (e.g. this flaw is heard throughout the Mega Man 2 ending).
  • Registers $4001/4005 control the sweep unit. Enabling the sweep causes the pitch to constantly rise or fall. When the frequency reaches the end of the generator's range of output the channel is silenced. See APU Sweep for details.
  • The two pulse channels are combined in a nonlinear mix (see mixer below).

Triangle ($4008-400B)

The triangle channel produces a quantized triangle wave. It has no volume control, but it has a length counter as well as a higher resolution linear counter control.

$4008 CRRR RRRR Length counter disable / linear counter control (C), linear counter load (R)
$4009 ---- ---- Unused
$400A TTTT TTTT Timer low (T)
$400B LLLL LTTT Length counter load (L), timer high (T)
  • The triangle wave has 32 steps that output a 4-bit value.
  • The linear counter control will silence the channel after a specified time with a resolution of 240Hz (see frame counter below). It shares a control bit with the length counter in $4008, which means that they are always enabled at the same time, and whichever is shorter is redundant. See APU Triangle for more linear counter details.
  • The pitch of the triangle channel is one octave below the pulse channels with an equivalent timer value (i.e. use the formula above but divide the resulting frequency by two).
  • Silencing the triangle channel merely halts it. It will continue to output its last value, rather than 0.
  • There is no way to reset the triangle channel's phase.

Noise ($400C-400F)

The noise channel produces noise with a pseudo-random bit generator. It has a volume, envelope, and length counter like the pulse channels.

$400C --LC NNNN Envelope loop / length counter disable (L), constant volume (C), volume/envelope (V)
$400D ---- ---- Unused
$400E L--- PPPP Loop noise (L), noise period (P)
$400F LLLL L--- Length counter load (L)
  • The frequency of the noise is determined by a 4-bit value in $400E, which loads a period from a lookup table (see APU Noise).
  • If bit 7 of $400E is set, the period of the random bit generation is drastically shortened, producing a buzzing tone (e.g. the metalic ding during Solstice's gameplay). The actual timbre produced depends on whatever bits happen to be in the generator when it is switched to periodic, and is somewhat random.

DMC ($4010-4013)

The delta modulation channel outputs a 7-bit PCM signal from a counter that can be driven by DPCM samples.

$4010 IL-- RRRR IRQ enable (I), loop (L), frequency (R)
$4011 -DDD DDDD Load counter (D)
$4012 AAAA AAAA Sample address (A)
$4013 LLLL LLLL Sample length (L)
  • DPCM samples are stored as a stream of 1-bit deltas that control the 7-bit PCM counter that the channel outputs. A bit of 1 will increment the counter, 0 will decrement, and it will clamp rather than overflow if the 7-bit range is exceeded.
  • DPCM samples may loop if the loop flag in $4010 is set, and the DMC may be used to generate an IRQ when the end of the sample is reached if its IRQ flag is set.
  • The playback rate is controlled by register $4010 with a 4-bit frequency index value (see APU DMC for frequency lookup tables).
  • DPCM samples must begin in the memory range $C000-FFFF at an address set by register $4012 (address = %11AAAAAA.AA000000).
  • The length of the sample in bytes is set by register $4013 (length = %LLLL.LLLL0001).

Other Uses

  • The $4011 register can be used to play PCM samples directly by setting the counter value at a high frequency. Because this requires intensive use of the CPU, when used in games all other gameplay is usually halted to facilitate this.
  • Because of the APU's nonlinear mixing, a high value in the PCM counter reduces the volume of the triangle and noise channels. This is sometimes used to apply limited volume control to the triangle channel (e.g. Super Mario Bros. adjusts the counter between levels to accomplish this).
  • The DMC's IRQ can be used as an IRQ based timer when the mapper used does not have one available.

Status ($4015)

The status register is used to enable and disable individual channels, control the DMC, and can read the status of length counters and APU interrupts.

$4015 write ---D NT21 Enable DMC (D), noise (N), triangle (T), and pulse channels (2/1)
  • Writing a zero to any of the channel enable bits will silence that channel and immediately set its length counter to 0.
  • If the DMC bit is clear, the DMC bytes remaining will be set to 0 and the DMC will silence when it empties.
  • If the DMC bit is set, the DMC sample will be restarted only if its bytes remaining is 0.
  • Writing to this register clears the DMC interrupt flag.
$4015 read IF-D NT21 DMC interrupt (I), frame interrupt (F), DMC active (D), length counter > 0 (N/T/2/1)
  • N/T/2/1 will read as 1 if the corresponding length counter is greater than 0.
  • D will read as 1 if the DMC bytes remaining is more than 0.
  • Reading this register clears the frame interrupt flag (but not the DMC interrupt flag).
  • If an interrupt flag was set at the same moment of the read, it will read back as 1 but it will not be cleared.

Frame Counter ($4017)

$4017 MI-- ---- Mode (M, 0 = 4-step, 1 = 5-step), IRQ inhibit flag (I)

The frame counter is controlled by register $4017, and it drives the envelope, sweep, and length units on the pulse, triangle and noise channels. It ticks approximately 4 times per frame (240Hz), and executes either a 4 or 5 step sequence, depending how it is configured. It may optionally issue an IRQ on the last tick of each sequence.

The following diagram illustrates the two modes, selected by bit 7 of $4017:

mode 0:    mode 1:       function
---------  -----------  -----------------------------
 - - - f    - - - - -    IRQ (if bit 6 is clear)
 - l - l    l - l - -    Length counter and sweep
 e e e e    e e e e -    Envelope and linear counter

Both the 4 and 5-step modes operate at the same rate, but because the 5-step mode has an extra step, the effective update rate for individual units is slower in that mode (total update taking ~60Hz vs ~48Hz). Writing to $4017 will restart the sequence almost immediately (2 or 3 CPU cycles delay). Writing $4017 with bit 7 set will immediately clock all of its controlled units at the beginning of the 5-step sequence, but with bit 7 clear only the envelope and linear counter will be clocked.

Note that the frame counter is not exactly synchronized with the PPU NMI; it runs independently at a consistent rate which is approximately 240Hz. Some games (e.g. Super Mario Bros., Zelda) manually synchronize it by writing $C0 or $FF to $4017 once per frame.

Length Counter

The pulse, triangle, and noise channels each have their own length counter unit. It is clocked twice per sequence, and counts down to zero if enabled. When the length counter reaches zero the channel is silenced. It is reloaded by writing a 5-bit value to the appropriate channel's length counter register, which will load a value from a lookup table. (See APU Length Counter for the table.)

The triangle channel has an additional linear counter unit which is clocked four times per sequence (like the envelope of the other channels). It functions independently of the length counter, and will also silence the triangle channel when it reaches zero.

Mixer

The APU audio output signal comes from two separate components. The pulse channels are output on one pin, and the triangle/noise/DMC are output on another, after which they are combined. Each of these channels has its own nonlinear DAC. For details, see APU Mixer.

After combining the two output signals, the final signal may go through a lowpass and highpass filter. For instance, RF demodulation in televisions usually results in a strong lowpass. The NES' RCA output circuitry has a more mild lowpass filter.

Glossary

  • All APU channels have some form of frequency control. The term frequency is used where larger register value(s) correspond with higher frequencies, and the term period is used where smaller register value(s) correspond with higher frequencies.
  • In the block diagrams, a gate takes the input on the left and outputs it on the right, unless the control input on top tells the gate to ignore the input and always output 0.
  • Some APU units use one or more of the following building blocks:
  • A divider outputs a clock every n input clocks, where n is the divider's period. It contains a counter which is decremented on the arrival of each clock. When the counter reaches 0, it is reloaded with the period and an output clock is generated. A divider can also be forced to reload its counter immediately, but this does not output a clock. When a divider's period is changed, the current count is not affected.
  • A divider may be implemented as a down counter (5, 4, 3, ...) or as a linear feedback shift register (LFSR). The dividers in the pulse and triangle channels are linear down-counters. The dividers for noise, DMC, and the APU Frame Counter are implemented as LFSRs to save gates compared to the equivalent down counter.
  • A sequencer continuously loops over a sequence of values or events. When clocked, the next item in the sequence is generated.
  • A timer is used in each of the five channels to control the sound frequency. It contains a divider which is clocked by the CPU clock. The triangle channel's timer is clocked on every CPU cycle, but the pulse, noise, and DMC timers are clocked only on every second CPU cycle and thus produce only even periods.

References