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

28 lines
622 B
C
Raw Normal View History

2024-08-05 17:58:53 +08:00
//////////////////////////////////////////////////////////////////////////
// Mapper065 Irem H3001 //
//////////////////////////////////////////////////////////////////////////
class Mapper065 : public Mapper
{
public:
Mapper065( NES* parent ) : Mapper(parent) {}
void Reset();
void Write(WORD addr, BYTE data);
void HSync(INT scanline);
void Clock(INT cycles);
// For state save
BOOL IsStateSave() { return TRUE; }
void SaveState( LPBYTE p );
void LoadState( LPBYTE p );
protected:
BYTE patch;
BYTE irq_enable;
INT irq_counter;
INT irq_latch;
private:
};