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

21 lines
516 B
C
Raw Permalink Normal View History

2024-08-05 17:58:53 +08:00
//////////////////////////////////////////////////////////////////////////
// Mapper076 Namcot 109 (<28><><EFBFBD>_<EFBFBD>]<5D><>) //
//////////////////////////////////////////////////////////////////////////
class Mapper076 : public Mapper
{
public:
Mapper076( 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;
private:
};