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

32 lines
814 B
C++
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//////////////////////////////////////////////////////////////////////////
// Mapper116 CartSaint : —H—VAV­—ñ“` //
//////////////////////////////////////////////////////////////////////////
class Mapper116 : public Mapper
{
public:
Mapper116( NES* parent ) : Mapper(parent) {}
void Reset();
void WriteLow( WORD addr, BYTE data );
void Write( 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 mode;
BYTE vrc2_chr[8], vrc2_prg[2], vrc2_mirr;
BYTE mmc3_regs[10], mmc3_ctrl, mmc3_mirr;
BYTE mmc1_regs[4], mmc1_buffer, mmc1_shift;
BYTE IRQCount, IRQLatch, IRQa;
private:
void SetBank_CPU();
void SetBank_PPU();
void SetBank_MIR();
};