mirror of
https://github.com/libretro/Mesen.git
synced 2024-12-13 11:57:09 +00:00
14 lines
333 B
C++
14 lines
333 B
C++
#pragma once
|
|
|
|
#include "stdafx.h"
|
|
#include "Namco108_88.h"
|
|
|
|
class Namco108_154 : public Namco108_88
|
|
{
|
|
protected:
|
|
virtual void WriteRegister(uint16_t addr, uint8_t value) override
|
|
{
|
|
SetMirroringType((value & 0x40) == 0x40 ? MirroringType::ScreenBOnly : MirroringType::ScreenAOnly);
|
|
Namco108_88::WriteRegister(addr, value);
|
|
}
|
|
}; |