1
0
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:
2018-09-03 02:45:47 +10:00
parent 48dcc09399
commit 45ec9cf2cf
28 changed files with 6195 additions and 0 deletions

23
spctools/spc2it/emu.h Normal file
View 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