Files
DbNesEmulator/nescorelib/mappers/mapper003.cpp
2018-12-16 22:19:06 +01:00

18 lines
276 B
C++

#include "mapper003.h"
QString Mapper003::name() const
{
return QStringLiteral("CNROM");
}
quint8 Mapper003::mapper() const
{
return 3;
}
void Mapper003::writePrg(quint16 address, quint8 value)
{
// Bus conflicts !!
switch8kChr(readPrg(address) & value);
}