Mapper 213 support

This commit is contained in:
Souryo 2016-08-12 20:59:56 -04:00
parent 4c1c1f885b
commit 2a78b457f4
4 changed files with 28 additions and 1 deletions

View File

@ -456,6 +456,7 @@
<ClInclude Include="Mapper202.h" />
<ClInclude Include="Mapper203.h" />
<ClInclude Include="Mapper212.h" />
<ClInclude Include="Mapper213.h" />
<ClInclude Include="Mapper218.h" />
<ClInclude Include="Mapper221.h" />
<ClInclude Include="Mapper222.h" />

View File

@ -871,6 +871,9 @@
<ClInclude Include="Mapper222.h">
<Filter>Nes\Mappers\Unnamed</Filter>
</ClInclude>
<ClInclude Include="Mapper213.h">
<Filter>Nes\Mappers\Unnamed</Filter>
</ClInclude>
</ItemGroup>
<ItemGroup>
<ClCompile Include="stdafx.cpp">

21
Core/Mapper213.h Normal file
View File

@ -0,0 +1,21 @@
#pragma once
#include "stdafx.h"
#include "BaseMapper.h"
class Mapper213 : public BaseMapper
{
protected:
virtual uint16_t GetPRGPageSize() { return 0x8000; }
virtual uint16_t GetCHRPageSize() { return 0x2000; }
void InitMapper()
{
WriteRegister(0x8000, 0);
}
void WriteRegister(uint16_t addr, uint8_t value)
{
SelectCHRPage(0, (addr >> 3) & 0x07);
SelectPRGPage(0, (addr >> 1) & 0x03);
}
};

View File

@ -61,6 +61,7 @@
#include "Mapper202.h"
#include "Mapper203.h"
#include "Mapper212.h"
#include "Mapper213.h"
#include "Mapper218.h"
#include "Mapper221.h"
#include "Mapper222.h"
@ -182,7 +183,7 @@ Supported mappers:
| |===| |163|164|165|166|167|168|===|170|171|172|173|===|175|
|176|177|178|179|180| |182| |184|185| |187|188|189|===|191|
|192|193|194|195| |197| | |200|201|202|203| |205|206|207|
| |209|210|211|212| | | | | |218| | |221|222| |
| |209|210|211|212|213| | | | |218| | |221|222| |
| |225|226|227|228|229|230|231|232|233|234|235| |===|238|===|
|240|241|242|243|244|245|246|===|===|249|250|===|252| |254| |
-----------------------------------------------------------------
@ -367,6 +368,7 @@ BaseMapper* MapperFactory::GetMapperFromID(RomData &romData)
case 210: return new Namco163();
case 211: return new JyCompany();
case 212: return new Mapper212();
case 213: return new Mapper213();
case 218: return new Mapper218();
case 221: return new Mapper221();
case 222: return new Mapper222();