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

21 lines
517 B
C
Raw Normal View History

2024-08-05 17:58:53 +08:00
//////////////////////////////////////////////////////////////////////////
// Mapper226 76-in-1 //
//////////////////////////////////////////////////////////////////////////
class Mapper226 : public Mapper
{
public:
Mapper226( 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 reg[2];
private:
};