diff --git a/trunk/src/boards/inlnsf.cpp b/trunk/src/boards/inlnsf.cpp new file mode 100644 index 00000000..c9b9fd6a --- /dev/null +++ b/trunk/src/boards/inlnsf.cpp @@ -0,0 +1,62 @@ +/* FCE Ultra - NES/Famicom Emulator + * + * Copyright notice for this file: + * Copyright (C) 2002 Xodnizel + * + * 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 regs[8]; + +static SFORMAT StateRegs[] = +{ + { regs, 8, "REGS" }, + { 0 } +}; + +static void Sync(void) { + for (int i=0; i < 8; ++i) + { + setprg4(0x8000 + (0x1000 * i), regs[i]); + } +} + +static DECLFW(M31Write) { + if (A >= 0x5000 && A <= 0x5FFF) + { + regs[A&7] = V; + Sync(); + } +} + +static void M31Power(void) { + setchr8(0); + regs[7] = 0xFF; + Sync(); + SetReadHandler(0x8000, 0xffff, CartBR); + SetWriteHandler(0x5000, 0x5fff, M31Write); +} + +static void StateRestore(int version) { + Sync(); +} + +void Mapper31_Init(CartInfo *info) { + info->Power = M31Power; + GameStateRestore = StateRestore; + AddExState(&StateRegs, ~0, 0, 0); +} diff --git a/trunk/src/ines.cpp b/trunk/src/ines.cpp index 05980a85..c64460ae 100644 --- a/trunk/src/ines.cpp +++ b/trunk/src/ines.cpp @@ -477,7 +477,7 @@ static BMAPPINGLocal bmap[] = { {"", 28, Mapper28_Init}, {"RET-CUFROM", 29, Mapper29_Init}, {"UNROM 512", 30, UNROM512_Init}, -// {"", 31, Mapper31_Init}, + {"infiniteneslives-NSF", 31, Mapper31_Init}, {"IREM G-101", 32, Mapper32_Init}, {"TC0190FMC/TC0350FMR", 33, Mapper33_Init}, {"IREM I-IM/BNROM", 34, Mapper34_Init}, diff --git a/trunk/src/ines.h b/trunk/src/ines.h index a857d6f2..e3ef254b 100644 --- a/trunk/src/ines.h +++ b/trunk/src/ines.h @@ -115,6 +115,7 @@ void Mapper25_Init(CartInfo *); void Mapper26_Init(CartInfo *); void Mapper28_Init(CartInfo *); void Mapper29_Init(CartInfo *); +void Mapper31_Init(CartInfo *); void Mapper32_Init(CartInfo *); void Mapper33_Init(CartInfo *); void Mapper34_Init(CartInfo *); diff --git a/trunk/vc/vc10_fceux.vcxproj b/trunk/vc/vc10_fceux.vcxproj index 7962e308..2f8d0817 100644 --- a/trunk/vc/vc10_fceux.vcxproj +++ b/trunk/vc/vc10_fceux.vcxproj @@ -362,6 +362,7 @@ + diff --git a/trunk/vc/vc10_fceux.vcxproj.filters b/trunk/vc/vc10_fceux.vcxproj.filters index cdf6da46..bf156716 100644 --- a/trunk/vc/vc10_fceux.vcxproj.filters +++ b/trunk/vc/vc10_fceux.vcxproj.filters @@ -211,6 +211,9 @@ boards + + boards + boards diff --git a/trunk/vc/vc8_fceux.vcproj b/trunk/vc/vc8_fceux.vcproj index a13bf91d..eb84a597 100644 --- a/trunk/vc/vc8_fceux.vcproj +++ b/trunk/vc/vc8_fceux.vcproj @@ -1022,6 +1022,10 @@ RelativePath="..\src\boards\h2288.cpp" > + + diff --git a/trunk/vc/vc9_fceux.vcproj b/trunk/vc/vc9_fceux.vcproj index 1f954d20..cc9c3b78 100644 --- a/trunk/vc/vc9_fceux.vcproj +++ b/trunk/vc/vc9_fceux.vcproj @@ -795,6 +795,10 @@ RelativePath="..\src\boards\h2288.cpp" > + +