Files
ci-libretro-fceumm/src/boards/bmc830425C4391t.c
retro-wertz 429f6c4545 UNIF: Update boards based on last commit
- fixes (if necessary), update and cleanup the following boards that now dont need alternate mappings:
- this is part of migrating unif to be usuable in ines mappers
- boards affected in this commit are:
  SUPERVISION16IN1, GS-2004, GS-2013, UNL-SMB2J, MARIO1-MALEE2, UNL-SA-9602B, UNL-KS106C / RESETNROM-XIN1
  UNL-AC08, NES-NTBROM, BMC-K-3033, BMC-GN-26, BMC-GHOSTBUSTERS63IN1, BMC-830425C-4391T
  BMC-830134C, BMC-891227 / BMC-CTC-12IN1, BMC-JC-016-2, UNL-T4A54A, UNL-8157, BMC-T-262
  (might have forgotten to list some...)
2019-07-11 16:34:39 +08:00

81 lines
2.1 KiB
C

/* FCEUmm - NES/Famicom Emulator
*
* Copyright (C) 2019 Libretro Team
*
* 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
*
*/
/* NES 2.0 Mapper 320 is used for the Super HiK 6-in-1 A-030 multicart.
* Basically UxROM with an address-latch-based outer bank register.
* UNIF board name is BMC-830425C-4391T. Mirroring is hard-wired.
* http://wiki.nesdev.com/w/index.php/NES_2.0_Mapper_320
*/
#include "mapinc.h"
static uint8 bank_size;
static uint8 inner_bank;
static uint8 outer_bank;
static SFORMAT StateRegs[] =
{
{ &inner_bank, 1, "INNB" },
{ &outer_bank, 1, "OUTB" },
{ &bank_size, 1, "SIZE" },
{ 0 }
};
static void Sync(void) {
setprg16(0x8000, (outer_bank << 3) | (inner_bank & bank_size));
setprg16(0xC000, (outer_bank << 3) | bank_size);
setchr8(0);
}
static DECLFW(M320Write) {
/* address mask is inconsistent with that is in the wiki. Mask should be
* 0xFFE0 or Mermaid game will not work. */
if ((A & 0xFFE0) == 0xF0E0) {
outer_bank = (A & 0x0F);
bank_size = (A & 0x10) ? 0x07 : 0x0F;
}
inner_bank = (V & 0x0F);
Sync();
}
static void M320Power(void) {
bank_size = 0x0F;
Sync();
SetReadHandler(0x8000, 0xFFFF, CartBR);
SetWriteHandler(0x8000, 0xFFFF, M320Write);
}
static void M320Reset(void) {
inner_bank = outer_bank = 0;
bank_size = 0x0F;
Sync();
}
static void StateRestore(int version) {
Sync();
}
void BMC830425C4391T_Init(CartInfo *info) {
info->Power = M320Power;
info->Reset = M320Reset;
GameStateRestore = StateRestore;
AddExState(&StateRegs, ~0, 0, 0);
}