mirror of
https://github.com/libretro/Mesen.git
synced 2024-11-27 11:00:50 +00:00
46 lines
913 B
C++
46 lines
913 B
C++
#pragma once
|
|
#include "stdafx.h"
|
|
#include "BaseMapper.h"
|
|
|
|
class BF909x : public BaseMapper
|
|
{
|
|
private:
|
|
bool _bf9097Mode = false; //Auto-detect for firehawk
|
|
|
|
protected:
|
|
virtual uint16_t GetPRGPageSize() { return 0x4000; }
|
|
virtual uint16_t GetCHRPageSize() { return 0x2000; }
|
|
|
|
void InitMapper()
|
|
{
|
|
if(_subMapperID == 1) {
|
|
_bf9097Mode = true;
|
|
}
|
|
|
|
//First and last PRG page
|
|
SelectPRGPage(0, 0);
|
|
SelectPRGPage(1, -1);
|
|
|
|
SelectCHRPage(0, 0);
|
|
}
|
|
|
|
void WriteRegister(uint16_t addr, uint8_t value)
|
|
{
|
|
if(addr == 0x9000) {
|
|
//Firehawk uses $9000 to change mirroring
|
|
_bf9097Mode = true;
|
|
}
|
|
|
|
if(addr >= 0xC000 || !_bf9097Mode) {
|
|
SelectPRGPage(0, value);
|
|
} else if(addr < 0xC000) {
|
|
SetMirroringType((value & 0x10) ? MirroringType::ScreenAOnly : MirroringType::ScreenBOnly);
|
|
}
|
|
}
|
|
|
|
virtual void StreamState(bool saving)
|
|
{
|
|
BaseMapper::StreamState(saving);
|
|
Stream(_bf9097Mode);
|
|
}
|
|
}; |