mirror of
https://github.com/libretro/Mesen.git
synced 2024-11-27 11:00:50 +00:00
12 lines
248 B
C++
12 lines
248 B
C++
#pragma once
|
|
#include "stdafx.h"
|
|
#include "MMC3.h"
|
|
|
|
class MMC3_250 : public MMC3
|
|
{
|
|
protected:
|
|
virtual void WriteRegister(uint16_t addr, uint8_t value) override
|
|
{
|
|
MMC3::WriteRegister((addr & 0xE000) | ((addr & 0x0400) >> 10), addr & 0xFF);
|
|
}
|
|
}; |