AxibugEmuOnline/References/VirtuaNESex_src_191105/NES/Mapper/Mapper046.h
2024-08-05 17:58:53 +08:00

24 lines
580 B
C++

//////////////////////////////////////////////////////////////////////////
// Mapper046 Rumble Station //
//////////////////////////////////////////////////////////////////////////
class Mapper046 : public Mapper
{
public:
Mapper046( NES* parent ) : Mapper(parent) {}
void Reset();
void WriteLow( WORD addr, BYTE data );
void Write( WORD addr, BYTE data );
// For state save
BOOL IsStateSave() { return TRUE; }
void SaveState( LPBYTE p );
void LoadState( LPBYTE p );
protected:
int reg[4];
private:
void SetBank();
};