diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/apu.c | 3 | ||||
-rw-r--r-- | src/apu.h | 4 | ||||
-rw-r--r-- | src/ppu_.c | 2 |
3 files changed, 4 insertions, 5 deletions
@@ -46,6 +46,7 @@ #include "snes9x.h"
#include "spc700.h"
#include "apu.h"
+#include "apumem.h"
#include "soundux.h"
#include "cpuexec.h"
@@ -410,8 +411,6 @@ void S9xDeinitAPU() }
}
-uint8 APUROM [64];
-
void S9xResetAPU(void)
{
int i, j;
@@ -103,8 +103,8 @@ typedef struct } SIAPU;
-SAPU APU;
-SIAPU IAPU;
+extern SAPU APU;
+extern SIAPU IAPU;
static INLINE void S9xAPUUnpackStatus(void)
{
@@ -900,7 +900,7 @@ void S9xSetPPU(uint8 Byte, uint16 Address) if (Byte & FLG_G) S9xSuperFXExec(); else - FxFlushCache(&GSU); + FxFlushCache(); } else Memory.FillRAM [Address] = Byte; |