/***************************************************************************** MAME/MESS NES APU CORE Based on the Nofrendo/Nosefart NES N2A03 sound emulation core written by Matthew Conte (matt@conte.com) and redesigned for use in MAME/MESS by Who Wants to Know? (wwtk@mail.com) This core is written with the advise and consent of Matthew Conte and is released under the GNU Public License. This core is freely avaiable for use in any freeware project, subject to the following terms: Any modifications to this code must be duly noted in the source and approved by Matthew Conte and myself prior to public submission. timing notes: master = 21477270 2A03 clock = master/12 sequencer = master/89490 or CPU/7457 ***************************************************************************** NES_APU.C Actual NES APU interface. LAST MODIFIED 02/29/2004 - Based on Matthew Conte's Nofrendo/Nosefart core and redesigned to use MAME system calls and to enable multiple APUs. Sound at this point should be just about 100% accurate, though I cannot tell for certain as yet. A queue interface is also available for additional speed. However, the implementation is not yet 100% (DPCM sounds are inaccurate), so it is disabled by default. ***************************************************************************** BUGFIXES: - Various bugs concerning the DPCM channel fixed. (Oliver Achten) - Fixed $4015 read behaviour. (Oliver Achten) *****************************************************************************/ #include "sndintrf.h" #include "cpuexec.h" #include "streams.h" #include "nes_apu.h" #include "driver.h" #include "cpu/m6502/m6502.h" #include "nes_defs.h" /* GLOBAL CONSTANTS */ #define SYNCS_MAX1 0x20 #define SYNCS_MAX2 0x80 /* GLOBAL VARIABLES */ struct nesapu_info { apu_t APU; /* Actual APUs */ float apu_incsize; /* Adjustment increment */ uint32 samps_per_sync; /* Number of samples per vsync */ uint32 buffer_size; /* Actual buffer size in bytes */ uint32 real_rate; /* Actual playback rate */ uint8 noise_lut[NOISE_LONG]; /* Noise sample lookup table */ uint32 vbl_times[0x20]; /* VBL durations in samples */ uint32 sync_times1[SYNCS_MAX1]; /* Samples per sync table */ uint32 sync_times2[SYNCS_MAX2]; /* Samples per sync table */ sound_stream *stream; }; /* INTERNAL FUNCTIONS */ /* INITIALIZE WAVE TIMES RELATIVE TO SAMPLE RATE */ static void create_vbltimes(uint32 * table,const uint8 *vbl,unsigned int rate) { int i; for (i=0;i<0x20;i++) table[i]=vbl[i]*rate; } /* INITIALIZE SAMPLE TIMES IN TERMS OF VSYNCS */ static void create_syncs(struct nesapu_info *info, unsigned long sps) { int i; unsigned long val=sps; for (i=0;isync_times1[i]=val; val+=sps; } val=0; for (i=0;isync_times2[i]=val; info->sync_times2[i]>>=2; val+=sps; } } /* INITIALIZE NOISE LOOKUP TABLE */ static void create_noise(uint8 *buf, const int bits, int size) { static int m = 0x0011; int xor_val, i; for (i = 0; i < size; i++) { xor_val = m & 1; m >>= 1; xor_val ^= (m & 1); m |= xor_val << (bits - 1); buf[i] = m; } } /* TODO: sound channels should *ALL* have DC volume decay */ /* OUTPUT SQUARE WAVE SAMPLE (VALUES FROM -16 to +15) */ static int8 apu_square(struct nesapu_info *info, square_t *chan) { int env_delay; int sweep_delay; int8 output; /* reg0: 0-3=volume, 4=envelope, 5=hold, 6-7=duty cycle ** reg1: 0-2=sweep shifts, 3=sweep inc/dec, 4-6=sweep length, 7=sweep on ** reg2: 8 bits of freq ** reg3: 0-2=high freq, 7-4=vbl length counter */ if (FALSE == chan->enabled) return 0; /* enveloping */ env_delay = info->sync_times1[chan->regs[0] & 0x0F]; /* decay is at a rate of (env_regs + 1) / 240 secs */ chan->env_phase -= 4; while (chan->env_phase < 0) { chan->env_phase += env_delay; if (chan->regs[0] & 0x20) chan->env_vol = (chan->env_vol + 1) & 15; else if (chan->env_vol < 15) chan->env_vol++; } /* vbl length counter */ if (chan->vbl_length > 0 && 0 == (chan->regs [0] & 0x20)) chan->vbl_length--; if (0 == chan->vbl_length) return 0; /* freqsweeps */ if ((chan->regs[1] & 0x80) && (chan->regs[1] & 7)) { sweep_delay = info->sync_times1[(chan->regs[1] >> 4) & 7]; chan->sweep_phase -= 2; while (chan->sweep_phase < 0) { chan->sweep_phase += sweep_delay; if (chan->regs[1] & 8) chan->freq -= chan->freq >> (chan->regs[1] & 7); else chan->freq += chan->freq >> (chan->regs[1] & 7); } } if ((0 == (chan->regs[1] & 8) && (chan->freq >> 16) > freq_limit[chan->regs[1] & 7]) || (chan->freq >> 16) < 4) return 0; chan->phaseacc -= (float) info->apu_incsize; /* # of cycles per sample */ while (chan->phaseacc < 0) { chan->phaseacc += (chan->freq >> 16); chan->adder = (chan->adder + 1) & 0x0F; } if (chan->regs[0] & 0x10) /* fixed volume */ output = chan->regs[0] & 0x0F; else output = 0x0F - chan->env_vol; if (chan->adder < (duty_lut[chan->regs[0] >> 6])) output = -output; return (int8) output; } /* OUTPUT TRIANGLE WAVE SAMPLE (VALUES FROM -16 to +15) */ static int8 apu_triangle(struct nesapu_info *info, triangle_t *chan) { int freq; int8 output; /* reg0: 7=holdnote, 6-0=linear length counter ** reg2: low 8 bits of frequency ** reg3: 7-3=length counter, 2-0=high 3 bits of frequency */ if (FALSE == chan->enabled) return 0; if (FALSE == chan->counter_started && 0 == (chan->regs[0] & 0x80)) { if (chan->write_latency) chan->write_latency--; if (0 == chan->write_latency) chan->counter_started = TRUE; } if (chan->counter_started) { if (chan->linear_length > 0) chan->linear_length--; if (chan->vbl_length && 0 == (chan->regs[0] & 0x80)) chan->vbl_length--; if (0 == chan->vbl_length) return 0; } if (0 == chan->linear_length) return 0; freq = (((chan->regs[3] & 7) << 8) + chan->regs[2]) + 1; if (freq < 4) /* inaudible */ return 0; chan->phaseacc -= (float) info->apu_incsize; /* # of cycles per sample */ while (chan->phaseacc < 0) { chan->phaseacc += freq; chan->adder = (chan->adder + 1) & 0x1F; output = (chan->adder & 7) << 1; if (chan->adder & 8) output = 0x10 - output; if (chan->adder & 0x10) output = -output; chan->output_vol = output; } return (int8) chan->output_vol; } /* OUTPUT NOISE WAVE SAMPLE (VALUES FROM -16 to +15) */ static int8 apu_noise(struct nesapu_info *info, noise_t *chan) { int freq, env_delay; uint8 outvol; uint8 output; /* reg0: 0-3=volume, 4=envelope, 5=hold ** reg2: 7=small(93 byte) sample,3-0=freq lookup ** reg3: 7-4=vbl length counter */ if (FALSE == chan->enabled) return 0; /* enveloping */ env_delay = info->sync_times1[chan->regs[0] & 0x0F]; /* decay is at a rate of (env_regs + 1) / 240 secs */ chan->env_phase -= 4; while (chan->env_phase < 0) { chan->env_phase += env_delay; if (chan->regs[0] & 0x20) chan->env_vol = (chan->env_vol + 1) & 15; else if (chan->env_vol < 15) chan->env_vol++; } /* length counter */ if (0 == (chan->regs[0] & 0x20)) { if (chan->vbl_length > 0) chan->vbl_length--; } if (0 == chan->vbl_length) return 0; freq = noise_freq[chan->regs[2] & 0x0F]; chan->phaseacc -= (float) info->apu_incsize; /* # of cycles per sample */ while (chan->phaseacc < 0) { chan->phaseacc += freq; chan->cur_pos++; if (NOISE_SHORT == chan->cur_pos && (chan->regs[2] & 0x80)) chan->cur_pos = 0; else if (NOISE_LONG == chan->cur_pos) chan->cur_pos = 0; } if (chan->regs[0] & 0x10) /* fixed volume */ outvol = chan->regs[0] & 0x0F; else outvol = 0x0F - chan->env_vol; output = info->noise_lut[chan->cur_pos]; if (output > outvol) output = outvol; if (info->noise_lut[chan->cur_pos] & 0x80) /* make it negative */ output = -output; return (int8) output; } /* RESET DPCM PARAMETERS */ INLINE void apu_dpcmreset(dpcm_t *chan) { chan->address = 0xC000 + (uint16) (chan->regs[2] << 6); chan->length = (uint16) (chan->regs[3] << 4) + 1; chan->bits_left = chan->length << 3; chan->irq_occurred = FALSE; chan->enabled = TRUE; /* Fixed * Proper DPCM channel ENABLE/DISABLE flag behaviour*/ chan->vol = 0; /* Fixed * DPCM DAC resets itself when restarted */ } /* OUTPUT DPCM WAVE SAMPLE (VALUES FROM -64 to +63) */ /* TODO: centerline naughtiness */ static int8 apu_dpcm(struct nesapu_info *info, dpcm_t *chan) { int freq, bit_pos; /* reg0: 7=irq gen, 6=looping, 3-0=pointer to clock table ** reg1: output dc level, 7 bits unsigned ** reg2: 8 bits of 64-byte aligned address offset : $C000 + (value * 64) ** reg3: length, (value * 16) + 1 */ if (chan->enabled) { freq = dpcm_clocks[chan->regs[0] & 0x0F]; chan->phaseacc -= (float) info->apu_incsize; /* # of cycles per sample */ while (chan->phaseacc < 0) { chan->phaseacc += freq; if (0 == chan->length) { chan->enabled = FALSE; /* Fixed * Proper DPCM channel ENABLE/DISABLE flag behaviour*/ chan->vol=0; /* Fixed * DPCM DAC resets itself when restarted */ if (chan->regs[0] & 0x40) apu_dpcmreset(chan); else { if (chan->regs[0] & 0x80) /* IRQ Generator */ { chan->irq_occurred = TRUE; n2a03_irq(info->APU.dpcm.memory->cpu); } break; } } chan->bits_left--; bit_pos = 7 - (chan->bits_left & 7); if (7 == bit_pos) { chan->cur_byte = memory_read_byte(info->APU.dpcm.memory, chan->address); chan->address++; chan->length--; } if (chan->cur_byte & (1 << bit_pos)) // chan->regs[1]++; chan->vol+=2; /* FIXED * DPCM channel only uses the upper 6 bits of the DAC */ else // chan->regs[1]--; chan->vol-=2; } } if (chan->vol > 63) chan->vol = 63; else if (chan->vol < -64) chan->vol = -64; return (int8) (chan->vol); } /* WRITE REGISTER VALUE */ INLINE void apu_regwrite(struct nesapu_info *info,int address, uint8 value) { int chan = (address & 4) ? 1 : 0; switch (address) { /* squares */ case APU_WRA0: case APU_WRB0: info->APU.squ[chan].regs[0] = value; break; case APU_WRA1: case APU_WRB1: info->APU.squ[chan].regs[1] = value; break; case APU_WRA2: case APU_WRB2: info->APU.squ[chan].regs[2] = value; if (info->APU.squ[chan].enabled) info->APU.squ[chan].freq = ((((info->APU.squ[chan].regs[3] & 7) << 8) + value) + 1) << 16; break; case APU_WRA3: case APU_WRB3: info->APU.squ[chan].regs[3] = value; if (info->APU.squ[chan].enabled) { info->APU.squ[chan].vbl_length = info->vbl_times[value >> 3]; info->APU.squ[chan].env_vol = 0; info->APU.squ[chan].freq = ((((value & 7) << 8) + info->APU.squ[chan].regs[2]) + 1) << 16; } break; /* triangle */ case APU_WRC0: info->APU.tri.regs[0] = value; if (info->APU.tri.enabled) { /* ??? */ if (FALSE == info->APU.tri.counter_started) info->APU.tri.linear_length = info->sync_times2[value & 0x7F]; } break; case 0x4009: /* unused */ info->APU.tri.regs[1] = value; break; case APU_WRC2: info->APU.tri.regs[2] = value; break; case APU_WRC3: info->APU.tri.regs[3] = value; /* this is somewhat of a hack. there is some latency on the Real ** Thing between when trireg0 is written to and when the linear ** length counter actually begins its countdown. we want to prevent ** the case where the program writes to the freq regs first, then ** to reg 0, and the counter accidentally starts running because of ** the sound queue's timestamp processing. ** ** set to a few NES sample -- should be sufficient ** ** 3 * (1789772.727 / 44100) = ~122 cycles, just around one scanline ** ** should be plenty of time for the 6502 code to do a couple of table ** dereferences and load up the other triregs */ /* used to be 3, but now we run the clock faster, so base it on samples/sync */ info->APU.tri.write_latency = (info->samps_per_sync + 239) / 240; if (info->APU.tri.enabled) { info->APU.tri.counter_started = FALSE; info->APU.tri.vbl_length = info->vbl_times[value >> 3]; info->APU.tri.linear_length = info->sync_times2[info->APU.tri.regs[0] & 0x7F]; } break; /* noise */ case APU_WRD0: info->APU.noi.regs[0] = value; break; case 0x400D: /* unused */ info->APU.noi.regs[1] = value; break; case APU_WRD2: info->APU.noi.regs[2] = value; break; case APU_WRD3: info->APU.noi.regs[3] = value; if (info->APU.noi.enabled) { info->APU.noi.vbl_length = info->vbl_times[value >> 3]; info->APU.noi.env_vol = 0; /* reset envelope */ } break; /* DMC */ case APU_WRE0: info->APU.dpcm.regs[0] = value; if (0 == (value & 0x80)) info->APU.dpcm.irq_occurred = FALSE; break; case APU_WRE1: /* 7-bit DAC */ //info->APU.dpcm.regs[1] = value - 0x40; info->APU.dpcm.regs[1] = value & 0x7F; info->APU.dpcm.vol = (info->APU.dpcm.regs[1]-64); break; case APU_WRE2: info->APU.dpcm.regs[2] = value; //apu_dpcmreset(info->APU.dpcm); break; case APU_WRE3: info->APU.dpcm.regs[3] = value; break; case APU_IRQCTRL: break; case APU_SMASK: if (value & 0x01) info->APU.squ[0].enabled = TRUE; else { info->APU.squ[0].enabled = FALSE; info->APU.squ[0].vbl_length = 0; } if (value & 0x02) info->APU.squ[1].enabled = TRUE; else { info->APU.squ[1].enabled = FALSE; info->APU.squ[1].vbl_length = 0; } if (value & 0x04) info->APU.tri.enabled = TRUE; else { info->APU.tri.enabled = FALSE; info->APU.tri.vbl_length = 0; info->APU.tri.linear_length = 0; info->APU.tri.counter_started = FALSE; info->APU.tri.write_latency = 0; } if (value & 0x08) info->APU.noi.enabled = TRUE; else { info->APU.noi.enabled = FALSE; info->APU.noi.vbl_length = 0; } if (value & 0x10) { /* only reset dpcm values if DMA is finished */ if (FALSE == info->APU.dpcm.enabled) { info->APU.dpcm.enabled = TRUE; apu_dpcmreset(&info->APU.dpcm); } } else info->APU.dpcm.enabled = FALSE; info->APU.dpcm.irq_occurred = FALSE; break; default: #ifdef MAME_DEBUG logerror("invalid apu write: $%02X at $%04X\n", value, address); #endif break; } } /* UPDATE SOUND BUFFER USING CURRENT DATA */ INLINE void apu_update(struct nesapu_info *info, stream_sample_t *buffer16, int samples) { int accum; while (samples--) { accum = apu_square(info, &info->APU.squ[0]); accum += apu_square(info, &info->APU.squ[1]); accum += apu_triangle(info, &info->APU.tri); accum += apu_noise(info, &info->APU.noi); accum += apu_dpcm(info, &info->APU.dpcm); /* 8-bit clamps */ if (accum > 127) accum = 127; else if (accum < -128) accum = -128; *(buffer16++)=accum<<8; } } /* READ VALUES FROM REGISTERS */ INLINE uint8 apu_read(int chip,int address) { struct nesapu_info *info = sndti_token(SOUND_NES, chip); if (address == 0x0f) /*FIXED* Address $4015 has different behaviour*/ { int readval = 0; if ( info->APU.dpcm.enabled == TRUE ) { readval |= 0x10; } if ( info->APU.dpcm.irq_occurred == TRUE ) { readval |= 0x80; } return readval; } else return info->APU.regs[address]; } /* WRITE VALUE TO TEMP REGISTRY AND QUEUE EVENT */ INLINE void apu_write(int chip,int address, uint8 value) { struct nesapu_info *info = sndti_token(SOUND_NES, chip); info->APU.regs[address]=value; stream_update(info->stream); apu_regwrite(info,address,value); } /* EXTERNAL INTERFACE FUNCTIONS */ /* REGISTER READ/WRITE FUNCTIONS */ READ8_HANDLER( nes_psg_0_r ) {return apu_read(0,offset);} READ8_HANDLER( nes_psg_1_r ) {return apu_read(1,offset);} WRITE8_HANDLER( nes_psg_0_w ) {apu_write(0,offset,data);} WRITE8_HANDLER( nes_psg_1_w ) {apu_write(1,offset,data);} /* UPDATE APU SYSTEM */ static STREAM_UPDATE( nes_psg_update_sound ) { struct nesapu_info *info = param; apu_update(info, outputs[0], samples); } /* INITIALIZE APU SYSTEM */ static SND_START( nesapu ) { const nes_interface *intf = device->static_config; struct nesapu_info *info = device->token; int rate = clock / 4; int i; /* Initialize global variables */ info->samps_per_sync = rate / ATTOSECONDS_TO_HZ(video_screen_get_frame_period(device->machine->primary_screen).attoseconds); info->buffer_size = info->samps_per_sync; info->real_rate = info->samps_per_sync * ATTOSECONDS_TO_HZ(video_screen_get_frame_period(device->machine->primary_screen).attoseconds); info->apu_incsize = (float) (clock / (float) info->real_rate); /* Use initializer calls */ create_noise(info->noise_lut, 13, NOISE_LONG); create_vbltimes(info->vbl_times,vbl_length,info->samps_per_sync); create_syncs(info, info->samps_per_sync); /* Adjust buffer size if 16 bits */ info->buffer_size+=info->samps_per_sync; /* Initialize individual chips */ (info->APU.dpcm).memory = cputag_get_address_space(device->machine, intf->cpu_tag, ADDRESS_SPACE_PROGRAM); info->stream = stream_create(device, 0, 1, rate, info, nes_psg_update_sound); /* register for save */ for (i = 0; i < 2; i++) { state_save_register_device_item_array(device, i, info->APU.squ[i].regs); state_save_register_device_item(device, i, info->APU.squ[i].vbl_length); state_save_register_device_item(device, i, info->APU.squ[i].freq); state_save_register_device_item(device, i, info->APU.squ[i].phaseacc); state_save_register_device_item(device, i, info->APU.squ[i].output_vol); state_save_register_device_item(device, i, info->APU.squ[i].env_phase); state_save_register_device_item(device, i, info->APU.squ[i].sweep_phase); state_save_register_device_item(device, i, info->APU.squ[i].adder); state_save_register_device_item(device, i, info->APU.squ[i].env_vol); state_save_register_device_item(device, i, info->APU.squ[i].enabled); } state_save_register_device_item_array(device, 0, info->APU.tri.regs); state_save_register_device_item(device, 0, info->APU.tri.linear_length); state_save_register_device_item(device, 0, info->APU.tri.vbl_length); state_save_register_device_item(device, 0, info->APU.tri.write_latency); state_save_register_device_item(device, 0, info->APU.tri.phaseacc); state_save_register_device_item(device, 0, info->APU.tri.output_vol); state_save_register_device_item(device, 0, info->APU.tri.adder); state_save_register_device_item(device, 0, info->APU.tri.counter_started); state_save_register_device_item(device, 0, info->APU.tri.enabled); state_save_register_device_item_array(device, 0, info->APU.noi.regs); state_save_register_device_item(device, 0, info->APU.noi.cur_pos); state_save_register_device_item(device, 0, info->APU.noi.vbl_length); state_save_register_device_item(device, 0, info->APU.noi.phaseacc); state_save_register_device_item(device, 0, info->APU.noi.output_vol); state_save_register_device_item(device, 0, info->APU.noi.env_phase); state_save_register_device_item(device, 0, info->APU.noi.env_vol); state_save_register_device_item(device, 0, info->APU.noi.enabled); state_save_register_device_item_array(device, 0, info->APU.dpcm.regs); state_save_register_device_item(device, 0, info->APU.dpcm.address); state_save_register_device_item(device, 0, info->APU.dpcm.length); state_save_register_device_item(device, 0, info->APU.dpcm.bits_left); state_save_register_device_item(device, 0, info->APU.dpcm.phaseacc); state_save_register_device_item(device, 0, info->APU.dpcm.output_vol); state_save_register_device_item(device, 0, info->APU.dpcm.cur_byte); state_save_register_device_item(device, 0, info->APU.dpcm.enabled); state_save_register_device_item(device, 0, info->APU.dpcm.irq_occurred); state_save_register_device_item(device, 0, info->APU.dpcm.vol); state_save_register_device_item_array(device, 0, info->APU.regs); #ifdef USE_QUEUE state_save_register_device_item_array(device, 0, info->APU.queue); state_save_register_device_item(device, 0, info->APU.head); state_save_register_device_item(device, 0, info->APU.tail); #else state_save_register_device_item(device, 0, info->APU.buf_pos); #endif return DEVICE_START_OK; } /************************************************************************** * Generic get_info **************************************************************************/ static SND_SET_INFO( nesapu ) { switch (state) { /* no parameters to set */ } } SND_GET_INFO( nesapu ) { switch (state) { /* --- the following bits of info are returned as 64-bit signed integers --- */ case SNDINFO_INT_TOKEN_BYTES: info->i = sizeof(struct nesapu_info); break; /* --- the following bits of info are returned as pointers to data or functions --- */ case SNDINFO_PTR_SET_INFO: info->set_info = SND_SET_INFO_NAME( nesapu ); break; case SNDINFO_PTR_START: info->start = SND_START_NAME( nesapu ); break; case SNDINFO_PTR_STOP: /* Nothing */ break; case SNDINFO_PTR_RESET: /* Nothing */ break; /* --- the following bits of info are returned as NULL-terminated strings --- */ case SNDINFO_STR_NAME: strcpy(info->s, "N2A03"); break; case SNDINFO_STR_CORE_FAMILY: strcpy(info->s, "Nintendo custom"); break; case SNDINFO_STR_CORE_VERSION: strcpy(info->s, "1.0"); break; case SNDINFO_STR_CORE_FILE: strcpy(info->s, __FILE__); break; case SNDINFO_STR_CORE_CREDITS: strcpy(info->s, "Copyright Nicola Salmoria and the MAME Team"); break; } }