AxibugEmuOnline/References/VirtuaNESex_src_191105/NES/Mapper/Mapper032.h

24 lines
529 B
C
Raw Normal View History

2024-08-05 17:58:53 +08:00
//////////////////////////////////////////////////////////////////////////
// Mapper032 Irem G101 //
//////////////////////////////////////////////////////////////////////////
class Mapper032 : public Mapper
{
public:
Mapper032( NES* parent ) : Mapper(parent) {}
void Reset();
void Write(WORD addr, BYTE data);
// For state save
BOOL IsStateSave() { return TRUE; }
void SaveState( LPBYTE p );
void LoadState( LPBYTE p );
protected:
BYTE patch;
BYTE reg;
private:
};