mirror of
https://github.com/ScrelliCopter/VGM-Tools
synced 2025-02-21 04:09:25 +11:00
24 lines
596 B
C
24 lines
596 B
C
/****************************************************
|
|
*Part of SPC2IT, read readme.md for more information*
|
|
****************************************************/
|
|
|
|
#ifndef EMU_H
|
|
#define EMU_H
|
|
#include "spc2ittypes.h"
|
|
#include "sneese_spc.h"
|
|
extern u8 SPC_DSP[256];
|
|
extern u8 SPCRAM[65536];
|
|
#define TotalCycles (active_context->TotalCycles)
|
|
extern u32 SPC_DSP_DATA;
|
|
|
|
extern s32 SPCtime;
|
|
extern SPCFileInformation *SPCInfo;
|
|
extern void (*SPC_Write_DSP_Hook)(u8);
|
|
|
|
#define SPCUpdateRate 100
|
|
|
|
s32 SPCInit(char *);
|
|
void SPCAddWriteDSPCallback(void (*ToAddCallback)(u8));
|
|
|
|
#endif
|