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

24 lines
601 B
C++

//////////////////////////////////////////////////////////////////////////
// Mapper050 SMB2J //
//////////////////////////////////////////////////////////////////////////
class Mapper050 : public Mapper
{
public:
Mapper050( NES* parent ) : Mapper(parent) {}
void Reset();
void ExWrite( WORD addr, BYTE data );
void WriteLow( WORD addr, BYTE data );
void HSync( INT scanline );
// For state save
BOOL IsStateSave() { return TRUE; }
void SaveState( LPBYTE p );
void LoadState( LPBYTE p );
protected:
BYTE irq_enable;
private:
};