mirror of
https://github.com/libretro/FBNeo.git
synced 2025-01-05 16:28:54 +00:00
burn_sound.h is now included with burnint.h. BurnSoundClear() BurnSoundDCFilter() etc. are now available for any driver/etc to use
This commit is contained in:
parent
776e08cf95
commit
54febf0857
@ -18,6 +18,7 @@
|
||||
#endif
|
||||
|
||||
#include "burn.h"
|
||||
#include "burn_sound.h"
|
||||
|
||||
#ifdef LSB_FIRST
|
||||
typedef union
|
||||
|
@ -3,7 +3,6 @@
|
||||
#include <math.h>
|
||||
#include <stddef.h>
|
||||
#include "cps.h"
|
||||
#include "burn_sound.h"
|
||||
|
||||
static const INT32 nQscClock = 4000000;
|
||||
static const INT32 nQscClockDivider = 166;
|
||||
|
@ -1,5 +1,4 @@
|
||||
#include "tiles_generic.h"
|
||||
#include "burn_sound.h"
|
||||
#include "z80_intf.h"
|
||||
#include "dac.h"
|
||||
#include "8255ppi.h"
|
||||
|
@ -16,7 +16,6 @@
|
||||
#include "earom.h"
|
||||
#include "redbaron.h" // audio custom
|
||||
#include "bzone.h" // audio custom
|
||||
#include "burn_sound.h" // dc filter
|
||||
|
||||
static UINT8 *AllMem;
|
||||
static UINT8 *MemEnd;
|
||||
|
@ -7,7 +7,6 @@
|
||||
#include "namcoio.h"
|
||||
#include "bitswap.h"
|
||||
#include "dac.h"
|
||||
#include "burn_sound.h" // dc filter
|
||||
|
||||
static UINT8 *AllMem;
|
||||
static UINT8 *MemEnd;
|
||||
|
@ -2,7 +2,6 @@
|
||||
// Note: if a mono route is needed (in the future), uncomment in the main render loop.
|
||||
|
||||
#include "burnint.h"
|
||||
#include "burn_sound.h"
|
||||
#include "burn_md2612.h"
|
||||
|
||||
void (*BurnMD2612Update)(INT16* pSoundBuf, INT32 nSegmentEnd);
|
||||
|
@ -1,5 +1,4 @@
|
||||
#include "burnint.h"
|
||||
#include "burn_sound.h"
|
||||
#include "burn_y8950.h"
|
||||
|
||||
// Timer Related
|
||||
|
@ -1,6 +1,5 @@
|
||||
// FBAlpha YM-2151 sound core interface
|
||||
#include "burnint.h"
|
||||
#include "burn_sound.h"
|
||||
#include "burn_ym2151.h"
|
||||
|
||||
// Irq Callback timing notes..
|
||||
|
@ -1,5 +1,4 @@
|
||||
#include "burnint.h"
|
||||
#include "burn_sound.h"
|
||||
#include "burn_ym2203.h"
|
||||
|
||||
#define MAX_YM2203 3
|
||||
|
@ -1,5 +1,4 @@
|
||||
#include "burnint.h"
|
||||
#include "burn_sound.h"
|
||||
#include "burn_ym2413.h"
|
||||
|
||||
void (*BurnYM2413Render)(INT16* pSoundBuf, INT32 nSegmentLength);
|
||||
|
@ -1,5 +1,4 @@
|
||||
#include "burnint.h"
|
||||
#include "burn_sound.h"
|
||||
#include "burn_ym2608.h"
|
||||
|
||||
void (*BurnYM2608Update)(INT16* pSoundBuf, INT32 nSegmentEnd);
|
||||
|
@ -1,5 +1,4 @@
|
||||
#include "burnint.h"
|
||||
#include "burn_sound.h"
|
||||
#include "burn_ym2610.h"
|
||||
|
||||
void (*BurnYM2610Update)(INT16* pSoundBuf, INT32 nSegmentEnd);
|
||||
|
@ -1,5 +1,4 @@
|
||||
#include "burnint.h"
|
||||
#include "burn_sound.h"
|
||||
#include "burn_ym2612.h"
|
||||
|
||||
#define MAX_YM2612 2
|
||||
|
@ -1,5 +1,4 @@
|
||||
#include "burnint.h"
|
||||
#include "burn_sound.h"
|
||||
#include "burn_ym3526.h"
|
||||
|
||||
// Timer Related
|
||||
|
@ -1,5 +1,4 @@
|
||||
#include "burnint.h"
|
||||
#include "burn_sound.h"
|
||||
#include "burn_ym3812.h"
|
||||
|
||||
#define MAX_YM3812 2
|
||||
|
@ -1,5 +1,4 @@
|
||||
#include "burnint.h"
|
||||
#include "burn_sound.h"
|
||||
#include "burn_ymf278b.h"
|
||||
|
||||
static INT32 (*BurnYMF278BStreamCallback)(INT32 nSoundRate);
|
||||
|
@ -47,7 +47,6 @@ Unmapped registers:
|
||||
|
||||
|
||||
#include "burnint.h"
|
||||
#include "burn_sound.h"
|
||||
#include "c140.h"
|
||||
|
||||
// --- Future NOTE: if asic219 DOES NOT WORK, this is why!! (line below) -dink
|
||||
|
@ -1,5 +1,4 @@
|
||||
#include "burnint.h"
|
||||
#include "burn_sound.h"
|
||||
#include "dac.h"
|
||||
|
||||
#define DAC_NUM (8) // Maximum DAC chips
|
||||
|
@ -87,7 +87,6 @@ Ensoniq OTIS - ES5505 Ensoniq OTTO -
|
||||
//
|
||||
|
||||
#include "burnint.h"
|
||||
#include "burn_sound.h"
|
||||
#include "es5506.h"
|
||||
|
||||
|
||||
|
@ -1,7 +1,6 @@
|
||||
// Based on MAME driver by Derrick Renaud, Couriersud
|
||||
|
||||
#include "burnint.h"
|
||||
#include "burn_sound.h"
|
||||
#include "flt_rc.h"
|
||||
|
||||
#include <math.h>
|
||||
|
@ -34,7 +34,6 @@ Registers per channel:
|
||||
***************************************************************************/
|
||||
|
||||
#include "burnint.h"
|
||||
#include "burn_sound.h"
|
||||
#include "gaelco.h"
|
||||
|
||||
#define GAELCO_NUM_CHANNELS 0x07
|
||||
|
@ -16,7 +16,6 @@
|
||||
|
||||
|
||||
#include "burnint.h"
|
||||
#include "burn_sound.h"
|
||||
//#include <cmath>
|
||||
|
||||
#include "timer.h"
|
||||
|
@ -25,7 +25,6 @@ added external port callback, and functions to set the volume of the channels
|
||||
|
||||
|
||||
#include "burnint.h"
|
||||
#include "burn_sound.h"
|
||||
#include "k007232.h"
|
||||
|
||||
#define KDAC_A_PCM_MAX (2)
|
||||
|
@ -13,7 +13,6 @@
|
||||
// Jan 19, 2018: added cubic resampling.
|
||||
|
||||
#include "burnint.h"
|
||||
#include "burn_sound.h"
|
||||
#include "math.h"
|
||||
#include "k054539.h"
|
||||
|
||||
|
@ -4,7 +4,6 @@
|
||||
#include <math.h>
|
||||
#include "burnint.h"
|
||||
#include "msm6295.h"
|
||||
#include "burn_sound.h"
|
||||
#include <stddef.h>
|
||||
|
||||
UINT8* MSM6295ROM;
|
||||
|
@ -1,7 +1,6 @@
|
||||
// copyright-holders:Nicola Salmoria,Aaron Giles
|
||||
|
||||
#include "burnint.h"
|
||||
#include "burn_sound.h"
|
||||
#include "namco_snd.h"
|
||||
|
||||
#define MAX_VOICES 8
|
||||
|
@ -5,7 +5,6 @@
|
||||
|
||||
#include "burnint.h"
|
||||
#include "rf5c68.h"
|
||||
#include "burn_sound.h"
|
||||
|
||||
#define NUM_CHANNELS (8)
|
||||
|
||||
|
@ -1,7 +1,6 @@
|
||||
// FB Alpha sample player module
|
||||
|
||||
#include "burnint.h"
|
||||
#include "burn_sound.h"
|
||||
#include "samples.h"
|
||||
|
||||
#define SAMPLE_DIRECTORY szAppSamplesPath
|
||||
|
@ -4,7 +4,6 @@
|
||||
/*********************************************************/
|
||||
|
||||
#include "burnint.h"
|
||||
#include "burn_sound.h"
|
||||
#include "segapcm.h"
|
||||
|
||||
#define MAX_CHIPS 2
|
||||
|
@ -1,7 +1,6 @@
|
||||
// Based on MAME driver by Nicola Salmoria
|
||||
|
||||
#include "burnint.h"
|
||||
#include "burn_sound.h"
|
||||
#include "sn76496.h"
|
||||
#include <stddef.h>
|
||||
|
||||
|
@ -12,7 +12,6 @@
|
||||
#include <math.h>
|
||||
|
||||
#include "burnint.h"
|
||||
#include "burn_sound.h"
|
||||
#include "tms5220.h"
|
||||
|
||||
|
||||
|
@ -1,7 +1,6 @@
|
||||
// Based on MAME driver by Juergen Buchmueller, Mike Balfour, Howie Cohen, Olivier Galibert, Aaron Giles
|
||||
|
||||
#include "burnint.h"
|
||||
#include "burn_sound.h"
|
||||
#include "upd7759.h"
|
||||
|
||||
#define FRAC_BITS 20
|
||||
|
@ -2,7 +2,6 @@
|
||||
|
||||
#include "burnint.h"
|
||||
#include "msm6295.h"
|
||||
#include "burn_sound.h"
|
||||
#include "x1010.h"
|
||||
|
||||
UINT8 *X1010SNDROM;
|
||||
|
@ -4,7 +4,6 @@
|
||||
#include <math.h>
|
||||
#include "burnint.h"
|
||||
#include "ymz280b.h"
|
||||
#include "burn_sound.h"
|
||||
|
||||
static INT32 nYMZ280BSampleRate;
|
||||
bool bESPRaDeMixerKludge = false;
|
||||
|
Loading…
Reference in New Issue
Block a user