mirror of
https://github.com/dborth/fceugx.git
synced 2024-11-01 15:05:05 +01:00
86 lines
2.4 KiB
C
86 lines
2.4 KiB
C
/* FCE Ultra - NES/Famicom Emulator
|
|
*
|
|
* Copyright notice for this file:
|
|
* Copyright (C) 2002 Xodnizel
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
*/
|
|
|
|
#ifndef _SOUND_H_
|
|
#define _SOUND_H_
|
|
|
|
typedef struct {
|
|
void (*Fill)(int Count); /* Low quality ext sound. */
|
|
|
|
/* NeoFill is for sound devices that are emulated in a more
|
|
high-level manner(VRC7) in HQ mode. Interestingly,
|
|
this device has slightly better sound quality(updated more
|
|
often) in lq mode than in high-quality mode. Maybe that
|
|
should be fixed. :)
|
|
*/
|
|
void (*NeoFill)(int32 *Wave, int Count);
|
|
void (*HiFill)(void);
|
|
void (*HiSync)(int32 ts);
|
|
|
|
void (*RChange)(void);
|
|
void (*Kill)(void);
|
|
} EXPSOUND;
|
|
|
|
extern EXPSOUND GameExpSound;
|
|
|
|
extern int32 nesincsize;
|
|
|
|
void SetSoundVariables(void);
|
|
|
|
int GetSoundBuffer(int32 **W);
|
|
int FlushEmulateSound(void);
|
|
extern int32 Wave[2048+512];
|
|
extern int32 WaveFinal[2048+512];
|
|
extern int32 WaveHi[];
|
|
extern uint32 soundtsinc;
|
|
|
|
#ifdef WIN32
|
|
extern volatile int datacount, undefinedcount;
|
|
extern int debug_loggingCD;
|
|
extern unsigned char *cdloggerdata;
|
|
#endif
|
|
|
|
extern uint32 soundtsoffs;
|
|
extern bool swapDuty;
|
|
#define SOUNDTS (timestamp + soundtsoffs)
|
|
|
|
void SetNESSoundMap(void);
|
|
void FrameSoundUpdate(void);
|
|
|
|
void FCEUSND_Power(void);
|
|
void FCEUSND_Reset(void);
|
|
void FCEUSND_SaveState(void);
|
|
void FCEUSND_LoadState(int version);
|
|
|
|
void FCEU_SoundCPUHook(int);
|
|
void Write_IRQFM (uint32 A, uint8 V); //mbg merge 7/17/06 brought over from latest mmbuild
|
|
|
|
void LogDPCM(int romaddress, int dpcmsize);
|
|
|
|
typedef struct {
|
|
uint8 Speed;
|
|
uint8 Mode; /* Fixed volume(1), and loop(2) */
|
|
uint8 DecCountTo1;
|
|
uint8 decvolume;
|
|
int reloaddec;
|
|
} ENVUNIT;
|
|
|
|
#endif
|