Add mapper 334

This commit is contained in:
negativeExponent
2022-02-07 15:23:44 +08:00
parent 4dc7da8e26
commit e8f1cd53eb
3 changed files with 67 additions and 0 deletions

65
src/boards/334.c Normal file
View File

@@ -0,0 +1,65 @@
/* FCEUmm - NES/Famicom Emulator
*
* Copyright notice for this file:
* Copyright (C) 2020 negativeExponent
*
* 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
*
*
*/
#include "mapinc.h"
#include "mmc3.h"
static uint8 dipswitch;
static void M334PW(uint32 A, uint8 V) {
setprg32(0x8000, EXPREGS[0] >> 1);
}
static DECLFW(M334Write) {
if (!(A & 1)) {
EXPREGS[0] = V;
FixMMC3PRG(MMC3_cmd);
}
}
static DECLFR(M334Read) {
if (A & 2)
return ((X.DB & 0xFE) | (dipswitch & 1));
return X.DB;
}
static void M334Reset(void) {
dipswitch++;
EXPREGS[0] = 0;
MMC3RegReset();
}
static void M334Power(void) {
dipswitch = 0;
EXPREGS[0] = 0;
GenMMC3Power();
SetReadHandler(0x6000, 0x7FFF, M334Read);
SetWriteHandler(0x6000, 0x7FFF, M334Write);
}
void Mapper334_Init(CartInfo *info) {
GenMMC3_Init(info, 32, 32, 0, 0);
pwrap = M334PW;
info->Power = M334Power;
info->Reset = M334Reset;
AddExState(EXPREGS, 1, 0, "EXPR");
}

View File

@@ -686,6 +686,7 @@ INES_BOARD_BEGIN()
INES_BOARD( "GKCX1", 288, Mapper288_Init )
INES_BOARD( "MMC3 BMC PIRATE", 294, Bs5652_Init ) /* nesdev redirects this as mapper 134 */
INES_BOARD( "TXC 01-22110-000", 297, Mapper297_Init )
INES_BOARD( "5/20-in-1 1993 Copyright", 334, Mapper334_Init )
INES_BOARD( "Super Mario Family", 353, Mapper353_Init )
INES_BOARD( "7-in-1 Rockman (JY-208)", 356, Mapper356_Init )
INES_BOARD( "Bit Corp 4-in-1", 357, Mapper357_Init )

View File

@@ -262,6 +262,7 @@ void Mapper288_Init(CartInfo *);
void Mapper293_Init(CartInfo *);
void Mapper297_Init(CartInfo *);
void Mapper319_Init(CartInfo *);
void Mapper334_Init(CartInfo *);
void Mapper353_Init(CartInfo *);
void Mapper356_Init(CartInfo *);
void Mapper357_Init(CartInfo *);