AxibugEmuOnline/virtuanessrc097-master/NES/Mapper/Mapper242.cpp

15 lines
810 B
C++
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//////////////////////////////////////////////////////////////////////////
// Mapper242 Wai Xing Zhan Shi //
//////////////////////////////////////////////////////////////////////////
void Mapper242::Reset()
{
SetPROM_32K_Bank( 0 );
}
void Mapper242::Write( WORD addr, BYTE data )
{
if( addr & 0x01 ) {
SetPROM_32K_Bank( (addr&0xF8)>>3 );
}
}