mirror of
https://github.com/rodamaral/lsnes.git
synced 2025-04-02 10:42:15 -04:00
13 lines
200 B
C++
Executable file
13 lines
200 B
C++
Executable file
class SufamiTurbo {
|
|
public:
|
|
struct Slot {
|
|
MappedRAM rom;
|
|
MappedRAM ram;
|
|
} slotA, slotB;
|
|
|
|
void load();
|
|
void unload();
|
|
void serialize(serializer&);
|
|
};
|
|
|
|
extern SufamiTurbo sufamiturbo;
|