2016-01-19 23:32:02 -05:00
|
|
|
#pragma once
|
|
|
|
#include "stdafx.h"
|
|
|
|
#include "BaseMapper.h"
|
|
|
|
|
|
|
|
class JalecoJf16 : public BaseMapper
|
|
|
|
{
|
|
|
|
protected:
|
2016-12-17 23:14:47 -05:00
|
|
|
virtual uint16_t GetPRGPageSize() override { return 0x4000; }
|
|
|
|
virtual uint16_t GetCHRPageSize() override { return 0x2000; }
|
|
|
|
virtual bool HasBusConflicts() override { return true; }
|
2016-01-19 23:32:02 -05:00
|
|
|
|
2016-12-17 23:14:47 -05:00
|
|
|
void InitMapper() override
|
2016-01-19 23:32:02 -05:00
|
|
|
{
|
2018-04-14 22:12:05 -04:00
|
|
|
SelectPRGPage(0, GetPowerOnByte());
|
2016-01-19 23:32:02 -05:00
|
|
|
SelectPRGPage(1, -1);
|
|
|
|
|
2018-04-14 22:12:05 -04:00
|
|
|
SelectCHRPage(0, GetPowerOnByte());
|
2016-01-19 23:32:02 -05:00
|
|
|
}
|
|
|
|
|
2016-12-17 23:14:47 -05:00
|
|
|
void WriteRegister(uint16_t addr, uint8_t value) override
|
2016-01-19 23:32:02 -05:00
|
|
|
{
|
|
|
|
SelectPRGPage(0, value & 0x07);
|
|
|
|
SelectCHRPage(0, (value >> 4) & 0x0F);
|
2018-07-07 14:52:51 -04:00
|
|
|
if(_romInfo.SubMapperID == 3) {
|
2016-06-03 19:16:31 -04:00
|
|
|
//078: 3 Holy Diver
|
2016-01-19 23:32:02 -05:00
|
|
|
SetMirroringType(value & 0x08 ? MirroringType::Vertical : MirroringType::Horizontal);
|
|
|
|
} else {
|
|
|
|
SetMirroringType(value & 0x08 ? MirroringType::ScreenBOnly : MirroringType::ScreenAOnly);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|