Mesen/Core/Txc22211C.h
2019-12-20 22:59:09 -05:00

21 lines
420 B
C++

#pragma once
#include "stdafx.h"
#include "Txc22211A.h"
class Txc22211C : public Txc22211A
{
protected:
void UpdateState() override
{
SelectPRGPage(0, 0);
if(_chrRomSize > 0x2000) {
SelectCHRPage(0, (_txc.GetOutput() & 0x01) | (_txc.GetY() ? 0x02 : 0) | ((_txc.GetOutput() & 0x02) << 1));
} else {
if(_txc.GetY()){
SelectCHRPage(0, 0);
} else {
RemovePpuMemoryMapping(0, 0x1FFF);
}
}
}
};