mirror of
https://github.com/libretro/pcsx2.git
synced 2025-01-02 23:38:48 +00:00
6ebfae8ef1
Added interface.cpp (plugin/pcsx2 interface) and savestate.cpp to SPU2ghz, to help clean up SPU2.cpp. git-svn-id: http://pcsx2.googlecode.com/svn/trunk@463 96395faa-99c1-11dd-bbfe-3dabce05a288
19 lines
380 B
C
19 lines
380 B
C
#ifndef __IOPLOAD_H__
|
|
#define __IOPLOAD_H__
|
|
|
|
#include <tamtypes.h>
|
|
|
|
extern char *iopModules[32];
|
|
|
|
void Kmemcpy(void *dest, const void *src, int n);
|
|
|
|
#define SBUS_MSFLG *(volatile int*)0xBD00F220
|
|
#define SBUS_SMFLG *(volatile int*)0xBD00F230
|
|
#define SBUS_F240 *(volatile int*)0xBD00F240
|
|
|
|
#define SBFLG_IOPALIVE 0x10000
|
|
#define SBFLG_IOPSYNC 0x40000
|
|
|
|
|
|
#endif /* __IOPLOAD_H__ */
|