* Support 2 MIB mapper 314 (Y2K 76-in-1) * Mapper 57: Forgot one Sync() statement * Mapper 83: Correction for 256 KiB PRG+512 KiB CHR games * Mapper 114: Use NES 2.0 submapper field if available to differentiate between scrambling patterns * NES 2.0: Support exponential notation of PRG/CHR sizes, thus adding support for 4 KiB and 8 KiB ROM files. * Add mapper 553. * Correct the database regarding the Nanjing game Pegasus Senya * Add submapper 5 (HST-162) to mapper 176 * Add mapper 436 * Mapper 176.5 has a CNROM latch as well, though it works a bit differently than submapper 1's * Added mapper 429 * Added mapper 380 submapper 1 * Added mapper 437 * Added mapper 456 * Forgot to include math.h for pow * Added mapper 434 * Added mapper 452 * Added mapper 438 * Added mappers 391 and 444, corrected the mixup with BS-110 and NC7000M * Added mapper 443. Added menu-switching funcionality to mapper 444 Co-authored-by: NewRisingSun <8vytz1+dhp372pv94ebg@sharklasers.com>
95 lines
2.2 KiB
C
95 lines
2.2 KiB
C
/* FCE Ultra - NES/Famicom Emulator
|
|
*
|
|
* Copyright notice for this file:
|
|
* Copyright (C) 2005 CaH4e3
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
*
|
|
* BMC 42-in-1 "reset switch" type
|
|
*/
|
|
|
|
#include "mapinc.h"
|
|
|
|
static uint8 regs[4];
|
|
|
|
static SFORMAT StateRegs[] =
|
|
{
|
|
{ regs, 4, "REGS" },
|
|
{ 0 }
|
|
};
|
|
|
|
static void Sync(void) {
|
|
if (regs[0] & 0x80) { /* NROM mode */
|
|
if (regs[1] & 0x80)
|
|
setprg32(0x8000, regs[1] & 0x3F);
|
|
else {
|
|
int bank = ((regs[1] & 0x3F) << 1) | ((regs[1] >> 6) & 1);
|
|
setprg16(0x8000, bank);
|
|
setprg16(0xC000, bank);
|
|
}
|
|
} else { /* UNROM mode */
|
|
setprg16(0x8000, regs[1] <<1 | regs[3] &7);
|
|
setprg16(0xC000, regs[1] <<1 | 7);
|
|
}
|
|
if (regs[0] & 0x20)
|
|
setmirror(MI_H);
|
|
else
|
|
setmirror(MI_V);
|
|
setchr8((regs[2] << 2) | ((regs[0] >> 1) & 3));
|
|
}
|
|
|
|
static DECLFW(BMC64in1nrWriteLo) {
|
|
A &=3;
|
|
if (A ==3) A =1; /* K-42001's "Aladdin III" */
|
|
regs[A & 3] = V;
|
|
Sync();
|
|
}
|
|
|
|
static DECLFW(BMC64in1nrWriteHi) {
|
|
regs[3] = V;
|
|
Sync();
|
|
}
|
|
|
|
static void BMC64in1nrPower(void) {
|
|
regs[0] = 0x80;
|
|
regs[1] = 0x43;
|
|
regs[2] = regs[3] = 0;
|
|
Sync();
|
|
SetWriteHandler(0x5000, 0x5FFF, BMC64in1nrWriteLo);
|
|
SetWriteHandler(0x8000, 0xFFFF, BMC64in1nrWriteHi);
|
|
SetReadHandler(0x8000, 0xFFFF, CartBR);
|
|
}
|
|
|
|
static void BMC64in1nrReset(void) {
|
|
/* Reset returns to menu */
|
|
regs[0] = 0x80;
|
|
regs[1] = 0x43;
|
|
regs[2] = regs[3] = 0;
|
|
Sync();
|
|
}
|
|
|
|
static void StateRestore(int version) {
|
|
Sync();
|
|
}
|
|
|
|
void BMC64in1nr_Init(CartInfo *info) {
|
|
info->Power = BMC64in1nrPower;
|
|
info->Reset = BMC64in1nrReset;
|
|
AddExState(&StateRegs, ~0, 0, 0);
|
|
GameStateRestore = StateRestore;
|
|
}
|
|
|
|
|