mirror of
https://github.com/amhndu/SimpleNES.git
synced 2025-04-02 10:21:43 -04:00
44 lines
1.1 KiB
C++
44 lines
1.1 KiB
C++
#ifndef MAPPERSXROM_H
|
|
#define MAPPERSXROM_H
|
|
#include "Mapper.h"
|
|
|
|
namespace sn
|
|
{
|
|
class MapperSxROM : public Mapper
|
|
{
|
|
public:
|
|
MapperSxROM(Cartridge& cart, std::function<void(void)> mirroring_cb);
|
|
void writePRG (Address addr, Byte value);
|
|
Byte readPRG (Address addr);
|
|
|
|
Byte readCHR (Address addr);
|
|
void writeCHR (Address addr, Byte value);
|
|
|
|
NameTableMirroring getNameTableMirroring();
|
|
private:
|
|
void calculatePRGPointers();
|
|
|
|
std::function<void(void)> m_mirroringCallback;
|
|
NameTableMirroring m_mirroing;
|
|
|
|
bool m_usesCharacterRAM;
|
|
int m_modeCHR;
|
|
int m_modePRG;
|
|
|
|
Byte m_tempRegister;
|
|
int m_writeCounter;
|
|
|
|
Byte m_regPRG;
|
|
Byte m_regCHR0;
|
|
Byte m_regCHR1;
|
|
|
|
const Byte* m_firstBankPRG;
|
|
const Byte* m_secondBankPRG;
|
|
|
|
const Byte* m_firstBankCHR;
|
|
const Byte* m_secondBankCHR;
|
|
|
|
std::vector<Byte> m_characterRAM;
|
|
};
|
|
}
|
|
#endif // MAPPERSXROM_H
|