1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190
|
////////////////////////////////////////////////////////////////////////////////////////
//
// Nestopia - NES/Famicom emulator written in C++
//
// Copyright (C) 2003-2008 Martin Freij
//
// This file is part of Nestopia.
//
// Nestopia 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.
//
// Nestopia 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 Nestopia; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
//
////////////////////////////////////////////////////////////////////////////////////////
#include "NstBoard.hpp"
#include "../NstDipSwitches.hpp"
#include "NstBoardBmcVt5201.hpp"
#include "../NstCrc32.hpp"
namespace Nes
{
namespace Core
{
namespace Boards
{
namespace Bmc
{
#ifdef NST_MSVC_OPTIMIZE
#pragma optimize("s", on)
#endif
Vt5201::CartSwitches::CartSwitches(const Context& c)
: mode(0), type(DetectType(c)) {}
Vt5201::CartSwitches::Type Vt5201::CartSwitches::DetectType(const Context& c)
{
switch (const dword crc = Crc32::Compute(c.prg.Mem(),c.prg.Size()))
{
case VT5201_6IN1:
case VT5201_12IN1:
case VT5201_28IN1:
case VT5201_54IN1:
case VT5201_55IN1:
case VT5201_65IN1:
return static_cast<Type>(crc);
}
return VT5201_XIN1;
}
void Vt5201::CartSwitches::SetMode(uint value)
{
mode = value;
}
uint Vt5201::CartSwitches::GetMode() const
{
return mode;
}
uint Vt5201::CartSwitches::GetValue(uint) const
{
return mode;
}
void Vt5201::CartSwitches::SetValue(uint,uint value)
{
mode = value;
}
uint Vt5201::CartSwitches::NumDips() const
{
return 1;
}
uint Vt5201::CartSwitches::NumValues(uint) const
{
return 4;
}
cstring Vt5201::CartSwitches::GetDipName(uint) const
{
return "Mode";
}
cstring Vt5201::CartSwitches::GetValueName(uint,uint i) const
{
static cstring const names[7][4] =
{
{ "1", "2", "3", "4" },
{ "6-in-1", "15-in-1", "35-in-1", "43-in-1" },
{ "12-in-1", "66-in-1", "77-in-1", "88-in-1" },
{ "28-in-1", "46-in-1", "63-in-1", "118-in-1" },
{ "54-in-1", "64-in-1", "74-in-1", "84-in-1" },
{ "55-in-1", "65-in-1", "75-in-1", "85-in-1" },
{ "65-in-1", "75-in-1", "85-in-1", "95-in-1" }
};
uint id = 0;
switch (type)
{
case VT5201_6IN1: id = 1; break;
case VT5201_12IN1: id = 2; break;
case VT5201_28IN1: id = 3; break;
case VT5201_54IN1: id = 4; break;
case VT5201_55IN1: id = 5; break;
case VT5201_65IN1: id = 6; break;
case VT5201_XIN1: default: break;
}
return names[id][i];
}
Vt5201::Vt5201(const Context& c)
: Board(c), cartSwitches(c) {}
Vt5201::Device Vt5201::QueryDevice(DeviceType type)
{
if (type == DEVICE_DIP_SWITCHES)
return &cartSwitches;
else
return Board::QueryDevice( type );
}
void Vt5201::SubReset(const bool hard)
{
Map( 0x8000U, 0xFFFFU, &Vt5201::Peek_8000, &Vt5201::Poke_8000 );
if (hard)
NES_DO_POKE(8000,0x8000,0x00);
}
void Vt5201::SubLoad(State::Loader& state,const dword baseChunk)
{
NST_VERIFY( baseChunk == (AsciiId<'B','V','T'>::V) );
if (baseChunk == AsciiId<'B','V','T'>::V)
{
while (const dword chunk = state.Begin())
{
if (chunk == AsciiId<'R','E','G'>::V)
{
const uint data = state.Read8();
cartMode = data << 1 & 0x100;
cartSwitches.SetMode( data & 0x3 );
}
state.End();
}
}
}
void Vt5201::SubSave(State::Saver& state) const
{
state.Begin( AsciiId<'B','V','T'>::V ) .Begin( AsciiId<'R','E','G'>::V ).Write8( cartSwitches.GetMode() | cartMode >> 1 ).End().End();
}
#ifdef NST_MSVC_OPTIMIZE
#pragma optimize("", on)
#endif
NES_PEEK_A(Vt5201,8000)
{
return !cartMode ? prg.Peek( address - 0x8000 ) : cartSwitches.GetMode();
}
NES_POKE_A(Vt5201,8000)
{
cartMode = address & 0x100;
ppu.SetMirroring( (address & 0x8) ? Ppu::NMT_H : Ppu::NMT_V );
prg.SwapBanks<SIZE_16K,0x0000>( (address >> 4) & ~(~address >> 7 & 0x1), (address >> 4) | (~address >> 7 & 0x1) );
chr.SwapBank<SIZE_8K,0x0000>( address );
}
}
}
}
}
|