mirror of
https://github.com/Michael-Prince-Sharpe/bsnes-classic.git
synced 2025-04-02 10:21:42 -04:00
21 lines
422 B
C++
21 lines
422 B
C++
#include "bus/bus.hpp"
|
|
|
|
class SuperFX : public Coprocessor, public MMIO {
|
|
public:
|
|
#include "core/core.hpp"
|
|
#include "memory/memory.hpp"
|
|
#include "mmio/mmio.hpp"
|
|
#include "timing/timing.hpp"
|
|
#include "disasm/disasm.hpp"
|
|
|
|
static void Enter();
|
|
void enter();
|
|
void init();
|
|
void enable();
|
|
void power();
|
|
void reset();
|
|
void serialize(serializer&);
|
|
};
|
|
|
|
extern SuperFX superfx;
|
|
extern SuperFXBus superfxbus;
|