mirror of
https://github.com/libretro/Mesen.git
synced 2024-11-24 09:39:44 +00:00
43 lines
783 B
C++
43 lines
783 B
C++
#pragma once
|
|
#include "stdafx.h"
|
|
#include "BaseMapper.h"
|
|
|
|
class NtdecTc112 : public BaseMapper
|
|
{
|
|
protected:
|
|
virtual uint16_t RegisterStartAddress() { return 0x6000; }
|
|
virtual uint16_t RegisterEndAddress() { return 0x7FFF; }
|
|
|
|
virtual uint16_t GetPRGPageSize() { return 0x2000; }
|
|
virtual uint16_t GetCHRPageSize() { return 0x0800; }
|
|
|
|
void InitMapper()
|
|
{
|
|
SelectPRGPage(1, -3);
|
|
SelectPRGPage(2, -2);
|
|
SelectPRGPage(3, -1);
|
|
}
|
|
|
|
void WriteRegister(uint16_t addr, uint8_t value)
|
|
{
|
|
switch(addr & 0x03){
|
|
case 0:
|
|
SelectCHRPage(0, value >> 1);
|
|
SelectCHRPage(1, (value >> 1) + 1);
|
|
break;
|
|
|
|
case 1:
|
|
SelectCHRPage(2, value >> 1);
|
|
break;
|
|
|
|
case 2:
|
|
SelectCHRPage(3, value >> 1);
|
|
break;
|
|
|
|
case 3:
|
|
SelectPRGPage(0, value);
|
|
break;
|
|
}
|
|
}
|
|
};
|