APU Envelope: Difference between revisions

From NESdev Wiki
Jump to navigationJump to search
(Add Wikipedia link for ADSR)
(Be more specific about what C does)
Line 14: Line 14:
| bit 5 || <tt>--L- ----</tt> || [[APU Length Counter]] halt flag (a decaying volume envelope will loop if the length counter is halted)
| bit 5 || <tt>--L- ----</tt> || [[APU Length Counter]] halt flag (a decaying volume envelope will loop if the length counter is halted)
|-
|-
| bit 4 || <tt>---C ----</tt> || Constant volume flag (0: decay; 1: constant volume)
| bit 4 || <tt>---C ----</tt> || Constant volume flag (0: use volume from envelope; 1: use constant volume)
|-
|-
| bits 3-0 || <tt>---- NNNN</tt> || Decay mode: Decay time (the divider's period is set to N + 1)<br>Constant volume mode: Volume
| bits 3-0 || <tt>---- NNNN</tt> || Decay mode: Decay time (the divider's period is set to N + 1)<br>Constant volume mode: Volume

Revision as of 05:58, 3 May 2013

In a synthesizer, an envelope is the way a sound's parameter changes over time. The NES APU has an envelope generator that controls the volume in one of two ways: it can generate a decreasing saw envelope (like a decay phase of an ADSR) with optional looping, or it can generate a constant volume that a more sophisticated software envelope generator can manipulate.

Each volume envelope unit contains the following: start flag, divider, and counter.

$4000 ddLC.NNNN Pulse channel 1 duty and envelope (write)
$4004 ddLC.NNNN Pulse channel 2 duty and envelope (write)
$400C --LC.NNNN Noise channel envelope (write)
bit 5 --L- ---- APU Length Counter halt flag (a decaying volume envelope will loop if the length counter is halted)
bit 4 ---C ---- Constant volume flag (0: use volume from envelope; 1: use constant volume)
bits 3-0 ---- NNNN Decay mode: Decay time (the divider's period is set to N + 1)
Constant volume mode: Volume
 
$4003 LLLL.Lttt Pulse channel 1 length counter load and timer (write)
$4007 LLLL.Lttt Pulse channel 2 length counter load and timer (write)
$400F LLLL.L--- Noise channel length counter load (write)
Side effects Sets start flag

When clocked by the frame counter, one of two actions occurs: if the start flag is clear, the divider is clocked, otherwise the start flag is cleared, the counter is loaded with 15, and the divider's period is immediately reloaded.

When the divider outputs a clock, one of two actions occurs: If the counter is non-zero, it is decremented, otherwise if the loop flag is set, the counter is loaded with 15.

The envelope unit's volume output depends on the constant volume flag: if set, the envelope parameter directly sets the volume, otherwise the counter's value is the current volume.