Add mappers 272, 291, 409, 414, 431

Add mapper 272

Add mapper 291

Add mapper 409

Add mapper 414

Add mapper 431
This commit is contained in:
negativeExponent
2022-02-15 16:51:55 +08:00
parent a1ca113b34
commit 324b85f107
7 changed files with 385 additions and 0 deletions

View File

@@ -704,3 +704,14 @@ void J2282_Init(CartInfo *info)
{
Latch_Init(info, J2282Sync, NULL, 0x0000, 0x8000, 0xFFFF, 0);
}
/* -------------- Mapper 409 ------------------------ */
static void M409Sync(void) {
setprg16(0x8000, latche);
setprg16(0xC000, ~0);
setchr8(0);
}
void Mapper409_Init(CartInfo *info) {
Latch_Init(info, M409Sync, NULL, 0x0000, 0xC000, 0xCFFF, 0);
}