mirror of
https://github.com/ScrelliCopter/VGM-Tools
synced 2025-02-21 04:09:25 +11:00
Reorganised slightly, and added my spc sample ripper + spc2it.
This commit is contained in:
23
spctools/spc2it/emu.h
Normal file
23
spctools/spc2it/emu.h
Normal file
@@ -0,0 +1,23 @@
|
||||
/****************************************************
|
||||
*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
|
||||
Reference in New Issue
Block a user