mirror of
https://github.com/dborth/fceugx.git
synced 2024-11-01 15:05:05 +01:00
98 lines
2.7 KiB
C++
98 lines
2.7 KiB
C++
/* FCE Ultra - NES/Famicom Emulator
|
|
*
|
|
* Copyright notice for this file:
|
|
* Copyright (C) 2009 CaH4e3
|
|
*
|
|
* 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 *WRAM = NULL;
|
|
static uint32 WRAMSIZE;
|
|
|
|
unsigned int *GetKeyboard(void); // FIXME: 10/28 - now implemented in SDL as well. should we rename this to a FCEUI_* function?
|
|
|
|
static unsigned int *TransformerKeys, oldkeys[256];
|
|
static int TransformerCycleCount, TransformerChar = 0;
|
|
|
|
static void TransformerIRQHook(int a) {
|
|
TransformerCycleCount += a;
|
|
if (TransformerCycleCount >= 1000) {
|
|
uint32 i;
|
|
TransformerCycleCount -= 1000;
|
|
TransformerKeys = GetKeyboard();
|
|
|
|
for (i = 0; i < 256; i++) {
|
|
if (oldkeys[i] != TransformerKeys[i]) {
|
|
if (oldkeys[i] == 0)
|
|
TransformerChar = i;
|
|
else
|
|
TransformerChar = i | 0x80;
|
|
X6502_IRQBegin(FCEU_IQEXT);
|
|
memcpy((void*)&oldkeys[0], (void*)TransformerKeys, sizeof(oldkeys));
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
static DECLFR(TransformerRead) {
|
|
uint8 ret = 0;
|
|
switch (A & 3) {
|
|
case 0: ret = TransformerChar & 15; break;
|
|
case 1: ret = (TransformerChar >> 4); break;
|
|
case 2: break;
|
|
case 4: break;
|
|
}
|
|
X6502_IRQEnd(FCEU_IQEXT);
|
|
return ret;
|
|
}
|
|
|
|
static void TransformerPower(void) {
|
|
setprg8r(0x10, 0x6000, 0);
|
|
setprg16(0x8000, 0);
|
|
setprg16(0xC000, ~0);
|
|
setchr8(0);
|
|
|
|
SetReadHandler(0x5000, 0x5004, TransformerRead);
|
|
SetReadHandler(0x6000, 0x7FFF, CartBR);
|
|
SetWriteHandler(0x6000, 0x7FFF, CartBW);
|
|
SetReadHandler(0x8000, 0xFFFF, CartBR);
|
|
FCEU_CheatAddRAM(WRAMSIZE >> 10, 0x6000, WRAM);
|
|
|
|
MapIRQHook = TransformerIRQHook;
|
|
}
|
|
|
|
static void TransformerClose(void) {
|
|
if (WRAM)
|
|
FCEU_gfree(WRAM);
|
|
WRAM = NULL;
|
|
}
|
|
|
|
void Transformer_Init(CartInfo *info) {
|
|
info->Power = TransformerPower;
|
|
info->Close = TransformerClose;
|
|
|
|
WRAMSIZE = 8192;
|
|
WRAM = (uint8*)FCEU_gmalloc(WRAMSIZE);
|
|
SetupCartPRGMapping(0x10, WRAM, WRAMSIZE, 1);
|
|
if (info->battery) {
|
|
info->SaveGame[0] = WRAM;
|
|
info->SaveGameLen[0] = WRAMSIZE;
|
|
}
|
|
AddExState(WRAM, WRAMSIZE, 0, "WRAM");
|
|
}
|