2014-06-26 23:13:02 -04:00
|
|
|
#pragma once
|
|
|
|
#include "stdafx.h"
|
|
|
|
#include "BaseMapper.h"
|
|
|
|
|
|
|
|
class AXROM : public BaseMapper
|
|
|
|
{
|
|
|
|
protected:
|
2015-08-09 20:45:45 -04:00
|
|
|
virtual uint16_t GetPRGPageSize() { return 0x8000; }
|
|
|
|
virtual uint16_t GetCHRPageSize() { return 0x2000; }
|
2014-06-26 23:13:02 -04:00
|
|
|
|
|
|
|
void InitMapper()
|
|
|
|
{
|
|
|
|
SelectPRGPage(0, 0);
|
|
|
|
SelectCHRPage(0, 0);
|
|
|
|
}
|
|
|
|
|
2016-06-03 19:16:31 -04:00
|
|
|
bool HasBusConflicts() { return _subMapperID == 2; }
|
|
|
|
|
2014-07-12 22:22:40 -04:00
|
|
|
void WriteRegister(uint16_t addr, uint8_t value)
|
2014-06-26 23:13:02 -04:00
|
|
|
{
|
|
|
|
SelectPRGPage(0, value & 0x07);
|
|
|
|
|
2015-07-29 22:10:34 -04:00
|
|
|
SetMirroringType(((value & 0x10) == 0x10) ? MirroringType::ScreenBOnly : MirroringType::ScreenAOnly);
|
2014-06-26 23:13:02 -04:00
|
|
|
}
|
|
|
|
};
|