Mesen/Core/CNROM.h

44 lines
1.1 KiB
C
Raw Normal View History

2014-06-24 18:28:19 +00:00
#pragma once
#include "stdafx.h"
#include "BaseMapper.h"
class CNROM : public BaseMapper
{
private:
bool _enableCopyProtection;
2014-06-24 18:28:19 +00:00
protected:
2016-12-18 04:14:47 +00:00
virtual uint16_t GetPRGPageSize() override { return 0x8000; }
virtual uint16_t GetCHRPageSize() override { return 0x2000; }
2016-12-18 04:14:47 +00:00
void InitMapper() override
{
SelectPRGPage(0, 0);
SelectCHRPage(0, 0);
//Needed for mighty bomb jack (j)
_vramOpenBusValue = 0xFF;
}
2016-12-18 04:14:47 +00:00
bool HasBusConflicts() override { return (_mapperID == 3 && _subMapperID == 2) || _mapperID == 185; }
2014-06-24 18:28:19 +00:00
2016-12-18 04:14:47 +00:00
void WriteRegister(uint16_t addr, uint8_t value) override
{
if(_enableCopyProtection) {
//"if C AND $0F is nonzero, and if C does not equal $13: CHR is enabled"
2016-08-13 13:30:01 +00:00
//Seicross (mapper 185 version) is assigned to submapper 16 (not a real submapper) to make it work properly
if((_subMapperID == 16 && !(value & 0x01)) || (_subMapperID == 0 && (value & 0x0F) != 0 && value != 0x13)) {
SelectCHRPage(0, 0);
} else {
RemovePpuMemoryMapping(0x0000, 0x1FFF);
}
} else {
2014-06-24 18:28:19 +00:00
SelectCHRPage(0, value);
}
}
public:
CNROM(bool enableCopyProtection) : _enableCopyProtection(enableCopyProtection)
{
}
2014-06-24 18:28:19 +00:00
};