Add mapper 352.

This commit is contained in:
NewRisingSun
2025-09-11 22:58:04 +02:00
parent bb0f65dc0c
commit 05983b1b28
3 changed files with 52 additions and 0 deletions

50
src/boards/352.c Normal file
View File

@@ -0,0 +1,50 @@
/* FCE Ultra - NES/Famicom Emulator
*
* Copyright notice for this file:
* Copyright (C) 2025 NewRisingSun
*
* 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"
static uint8 game;
static void sync () {
setprg32(0x8000, game);
setchr8(game);
}
static void power() {
SetReadHandler(0x6000, 0xFFFF, CartBR);
game = 0;
sync();
}
static void reset() {
if (++game >= ROM_size /2) game = 0;
sync();
}
static void stateRestore(int version) {
sync();
}
void Mapper352_Init (CartInfo *info) {
info->Power = power;
info->Reset = reset;
GameStateRestore = stateRestore;
AddExState(&game, 1, 0, "GAME");
}

View File

@@ -796,6 +796,7 @@ INES_BOARD_BEGIN()
INES_BOARD( "G-146", 349, BMCG146_Init )
INES_BOARD( "891227", 350, BMC891227_Init )
INES_BOARD( "Techline XB", 351, Mapper351_Init )
INES_BOARD( "Reset-based NROM-256", 352, Mapper352_Init )
INES_BOARD( "Super Mario Family", 353, Mapper353_Init )
INES_BOARD( "FAM250/81-01-39-C/SCHI-24",354, Mapper354_Init )
INES_BOARD( "3D-BLOCK", 355, UNL3DBlock_Init )

View File

@@ -281,6 +281,7 @@ void Mapper326_Init(CartInfo *);
void Mapper330_Init(CartInfo *);
void Mapper334_Init(CartInfo *);
void Mapper351_Init(CartInfo *);
void Mapper352_Init(CartInfo *);
void Mapper353_Init(CartInfo *);
void Mapper354_Init(CartInfo *);
void Mapper356_Init(CartInfo *);