Mesen/Core/MMC1_155.h
2016-06-18 15:49:00 -04:00

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();
}
};