2014-06-27 03:13:02 +00:00
|
|
|
#pragma once
|
|
|
|
#include "stdafx.h"
|
|
|
|
#include "BaseMapper.h"
|
|
|
|
|
|
|
|
class AXROM : public BaseMapper
|
|
|
|
{
|
|
|
|
protected:
|
2015-08-10 00:45:45 +00:00
|
|
|
virtual uint16_t GetPRGPageSize() { return 0x8000; }
|
|
|
|
virtual uint16_t GetCHRPageSize() { return 0x2000; }
|
2014-06-27 03:13:02 +00:00
|
|
|
|
|
|
|
void InitMapper()
|
|
|
|
{
|
|
|
|
SelectPRGPage(0, 0);
|
|
|
|
SelectCHRPage(0, 0);
|
|
|
|
}
|
|
|
|
|
2016-06-03 23:16:31 +00:00
|
|
|
bool HasBusConflicts() { return _subMapperID == 2; }
|
|
|
|
|
2014-07-13 02:22:40 +00:00
|
|
|
void WriteRegister(uint16_t addr, uint8_t value)
|
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
|
|
|
}
|
|
|
|
};
|