mirror of
https://github.com/libretro/Mesen.git
synced 2024-11-30 12:30:52 +00:00
14 lines
203 B
C++
14 lines
203 B
C++
#pragma once
|
|
#include "MMC1.h"
|
|
|
|
class MMC1_155 : public MMC1
|
|
{
|
|
protected :
|
|
void UpdateState()
|
|
{
|
|
//WRAM disable bit does not exist in mapper 155
|
|
_state.RegE000 &= 0x0F;
|
|
|
|
MMC1::UpdateState();
|
|
}
|
|
}; |