2014-06-27 03:13:02 +00:00
|
|
|
#pragma once
|
|
|
|
#include "stdafx.h"
|
|
|
|
#include "BaseMapper.h"
|
|
|
|
|
|
|
|
class AXROM : public BaseMapper
|
|
|
|
{
|
|
|
|
protected:
|
2016-12-18 04:14:47 +00:00
|
|
|
virtual uint16_t GetPRGPageSize() override { return 0x8000; }
|
|
|
|
virtual uint16_t GetCHRPageSize() override { return 0x2000; }
|
2014-06-27 03:13:02 +00:00
|
|
|
|
2016-12-18 04:14:47 +00:00
|
|
|
void InitMapper() override
|
2014-06-27 03:13:02 +00:00
|
|
|
{
|
2018-04-15 02:12:05 +00:00
|
|
|
SelectPRGPage(0, GetPowerOnByte());
|
2014-06-27 03:13:02 +00:00
|
|
|
SelectCHRPage(0, 0);
|
|
|
|
}
|
|
|
|
|
2016-12-18 04:14:47 +00:00
|
|
|
bool HasBusConflicts() override { return _subMapperID == 2; }
|
2016-06-03 23:16:31 +00:00
|
|
|
|
2016-12-18 04:14:47 +00:00
|
|
|
void WriteRegister(uint16_t addr, uint8_t value) override
|
2014-06-27 03:13:02 +00:00
|
|
|
{
|
2016-06-12 23:26:56 +00:00
|
|
|
SelectPRGPage(0, value & 0x0F);
|
2014-06-27 03:13:02 +00:00
|
|
|
|
2015-07-30 02:10:34 +00:00
|
|
|
SetMirroringType(((value & 0x10) == 0x10) ? MirroringType::ScreenBOnly : MirroringType::ScreenAOnly);
|
2014-06-27 03:13:02 +00:00
|
|
|
}
|
|
|
|
};
|