933fa3e8ba
Based on NRS' research
21 lines
No EOL
420 B
C++
21 lines
No EOL
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);
|
|
}
|
|
}
|
|
}
|
|
}; |