/***************************************************************************** ** $Source: /cygdrive/d/Private/_SVNROOT/bluemsx/blueMSX/Src/Memory/romMapperStandard.c,v $ ** ** $Revision: 1.6 $ ** ** $Date: 2008-03-30 18:38:44 $ ** ** More info: http://www.bluemsx.com ** ** Copyright (C) 2003-2006 Daniel Vik ** ** 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., 675 Mass Ave, Cambridge, MA 02139, USA. ** ****************************************************************************** */ #include "romMapperStandard.h" #include "MediaDb.h" #include "SlotManager.h" #include "DeviceManager.h" #include "SaveState.h" #include #include #include typedef struct { int deviceHandle; UInt8* romData; int slot; int sslot; int startPage; int size; int romMapper[4]; } RomMapperStandard; static void saveState(RomMapperStandard* rm) { SaveState* state = saveStateOpenForWrite("mapperStandard"); char tag[16]; int i; for (i = 0; i < 4; i++) { sprintf(tag, "romMapper%d", i); saveStateSet(state, tag, rm->romMapper[i]); } saveStateClose(state); } static void loadState(RomMapperStandard* rm) { SaveState* state = saveStateOpenForRead("mapperStandard"); char tag[16]; int i; for (i = 0; i < 4; i++) { sprintf(tag, "romMapper%d", i); rm->romMapper[i] = saveStateGet(state, tag, 0); } saveStateClose(state); for (i = 0; i < 4; i++) { slotMapPage(rm->slot, rm->sslot, rm->startPage + i, rm->romData + rm->romMapper[i] * 0x2000, 1, 0); } } static void destroy(RomMapperStandard* rm) { slotUnregister(rm->slot, rm->sslot, rm->startPage); deviceManagerUnregister(rm->deviceHandle); free(rm->romData); free(rm); } static void write(RomMapperStandard* rm, UInt16 address, UInt8 value) { int bank; address += 0x4000; if (address < 0x4000 || address > 0xC000) { return; } bank = (address - 0x4000) >> 13; if (rm->romMapper[bank] != value) { UInt8* bankData; if (value > rm->size / 0x2000) { value %= rm->size / 0x2000; } bankData = rm->romData + ((int)value << 13); rm->romMapper[bank] = value; slotMapPage(rm->slot, rm->sslot, rm->startPage + bank, bankData, 1, 0); } } int romMapperStandardCreate(const char* filename, UInt8* romData, int size, int slot, int sslot, int startPage) { DeviceCallbacks callbacks = { destroy, NULL, saveState, loadState }; RomMapperStandard* rm; int i; if (size < 0x8000) { return 0; } rm = malloc(sizeof(RomMapperStandard)); rm->deviceHandle = deviceManagerRegister(ROM_STANDARD, &callbacks, rm); slotRegister(slot, sslot, startPage, 4, NULL, NULL, write, destroy, rm); rm->romData = malloc(size); memcpy(rm->romData, romData, size); rm->size = size; rm->slot = slot; rm->sslot = sslot; rm->startPage = startPage; rm->romMapper[0] = 0; rm->romMapper[1] = 1; rm->romMapper[2] = 2; rm->romMapper[3] = 3; for (i = 0; i < 4; i++) { slotMapPage(rm->slot, rm->sslot, rm->startPage + i, rm->romData + rm->romMapper[i] * 0x2000, 1, 0); } return 1; }