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

20 lines
522 B
C
Raw Normal View History

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