emulua: add rom.readbyte and rom.readbytesigned
This commit is contained in:
parent
eb392878b9
commit
cda4fb4824
|
@ -1,3 +1,7 @@
|
||||||
|
---version 2.0.4 yet to be released---
|
||||||
|
|
||||||
|
02-nov-2008 - zeromus - emulua - add rom.readbyte and rom.readbytesigned
|
||||||
|
|
||||||
---version 2.0.3 released---
|
---version 2.0.3 released---
|
||||||
|
|
||||||
02-nov-2008 - zeromus - fix fcm conversion, recording, and playback of reset and power commands
|
02-nov-2008 - zeromus - fix fcm conversion, recording, and playback of reset and power commands
|
||||||
|
|
|
@ -48,6 +48,8 @@
|
||||||
#include "input.h"
|
#include "input.h"
|
||||||
#include "file.h"
|
#include "file.h"
|
||||||
#include "vsuni.h"
|
#include "vsuni.h"
|
||||||
|
#include "ines.h"
|
||||||
|
|
||||||
#ifdef _S9XLUA_H
|
#ifdef _S9XLUA_H
|
||||||
#include "fceulua.h"
|
#include "fceulua.h"
|
||||||
#endif
|
#endif
|
||||||
|
@ -1070,3 +1072,10 @@ bool FCEUXLoad(const char *name, FCEUFILE *fp)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
uint8 FCEU_ReadRomByte(uint32 i) {
|
||||||
|
extern iNES_HEADER head;
|
||||||
|
if(i < 16) return *((unsigned char *)&head+i);
|
||||||
|
if(i < 16+PRGsize[0])return PRGptr[0][i-16];
|
||||||
|
if(i < 16+PRGsize[0]+CHRsize[0])return CHRptr[0][i-16-PRGsize[0]];
|
||||||
|
return 0;
|
||||||
|
}
|
|
@ -45,6 +45,8 @@ extern uint8 *RAM; //shared memory modifications
|
||||||
extern uint8 *GameMemBlock; //shared memory modifications
|
extern uint8 *GameMemBlock; //shared memory modifications
|
||||||
extern int EmulationPaused;
|
extern int EmulationPaused;
|
||||||
|
|
||||||
|
uint8 FCEU_ReadRomByte(uint32 i);
|
||||||
|
|
||||||
extern readfunc ARead[0x10000];
|
extern readfunc ARead[0x10000];
|
||||||
extern writefunc BWrite[0x10000];
|
extern writefunc BWrite[0x10000];
|
||||||
|
|
||||||
|
|
821
src/ines.h
821
src/ines.h
|
@ -1,86 +1,89 @@
|
||||||
/* FCE Ultra - NES/Famicom Emulator
|
/* FCE Ultra - NES/Famicom Emulator
|
||||||
*
|
*
|
||||||
* Copyright notice for this file:
|
* Copyright notice for this file:
|
||||||
* Copyright (C) 1998 Bero
|
* Copyright (C) 1998 Bero
|
||||||
* Copyright (C) 2002 Xodnizel
|
* Copyright (C) 2002 Xodnizel
|
||||||
*
|
*
|
||||||
* This program is free software; you can redistribute it and/or modify
|
* 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
|
* it under the terms of the GNU General Public License as published by
|
||||||
* the Free Software Foundation; either version 2 of the License, or
|
* the Free Software Foundation; either version 2 of the License, or
|
||||||
* (at your option) any later version.
|
* (at your option) any later version.
|
||||||
*
|
*
|
||||||
* This program is distributed in the hope that it will be useful,
|
* This program is distributed in the hope that it will be useful,
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
* GNU General Public License for more details.
|
* GNU General Public License for more details.
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU General Public License
|
* You should have received a copy of the GNU General Public License
|
||||||
* along with this program; if not, write to the Free Software
|
* along with this program; if not, write to the Free Software
|
||||||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifdef INESPRIV
|
#ifndef _INES_H_
|
||||||
|
#define _INES_H_
|
||||||
void iNESStateRestore(int version);
|
|
||||||
extern uint32 iNESGameCRC32;
|
#ifdef INESPRIV
|
||||||
|
|
||||||
extern uint32 VROM_size;
|
void iNESStateRestore(int version);
|
||||||
extern uint32 ROM_size;
|
extern uint32 iNESGameCRC32;
|
||||||
|
|
||||||
extern void (*MapStateRestore)(int version);
|
extern uint32 VROM_size;
|
||||||
extern void (*MapClose)(void);
|
extern uint32 ROM_size;
|
||||||
extern void (*MapperReset)(void);
|
|
||||||
|
extern void (*MapStateRestore)(int version);
|
||||||
/* This order is necessary */
|
extern void (*MapClose)(void);
|
||||||
#define WRAM (GameMemBlock)
|
extern void (*MapperReset)(void);
|
||||||
#define sizeofWRAM 8192
|
|
||||||
|
/* This order is necessary */
|
||||||
#define MapperExRAM (GameMemBlock+sizeofWRAM)
|
#define WRAM (GameMemBlock)
|
||||||
#define sizeofMapperExRAM 32768
|
#define sizeofWRAM 8192
|
||||||
/* for the MMC5 code to work properly. It might be fixed later... */
|
|
||||||
|
#define MapperExRAM (GameMemBlock+sizeofWRAM)
|
||||||
#define CHRRAM (GameMemBlock+sizeofWRAM+sizeofMapperExRAM)
|
#define sizeofMapperExRAM 32768
|
||||||
#define sizeofCHRRAM 8192
|
/* for the MMC5 code to work properly. It might be fixed later... */
|
||||||
|
|
||||||
#define ExtraNTARAM (GameMemBlock+sizeofWRAM+sizeofMapperExRAM+sizeofCHRRAM)
|
#define CHRRAM (GameMemBlock+sizeofWRAM+sizeofMapperExRAM)
|
||||||
#define sizeofExtraNTARAM 2048
|
#define sizeofCHRRAM 8192
|
||||||
|
|
||||||
#define PRGBankList (ExtraNTARAM+sizeofExtraNTARAM)
|
#define ExtraNTARAM (GameMemBlock+sizeofWRAM+sizeofMapperExRAM+sizeofCHRRAM)
|
||||||
|
#define sizeofExtraNTARAM 2048
|
||||||
#define mapbyte1 (PRGBankList+4)
|
|
||||||
#define mapbyte2 (mapbyte1+8)
|
#define PRGBankList (ExtraNTARAM+sizeofExtraNTARAM)
|
||||||
#define mapbyte3 (mapbyte2+8)
|
|
||||||
#define mapbyte4 (mapbyte3+8)
|
#define mapbyte1 (PRGBankList+4)
|
||||||
extern uint16 iNESCHRBankList[8];
|
#define mapbyte2 (mapbyte1+8)
|
||||||
extern int32 iNESIRQLatch,iNESIRQCount;
|
#define mapbyte3 (mapbyte2+8)
|
||||||
extern uint8 iNESMirroring;
|
#define mapbyte4 (mapbyte3+8)
|
||||||
extern uint8 iNESIRQa;
|
extern uint16 iNESCHRBankList[8];
|
||||||
|
extern int32 iNESIRQLatch,iNESIRQCount;
|
||||||
#define IRQa iNESIRQa
|
extern uint8 iNESMirroring;
|
||||||
#define Mirroring iNESMirroring
|
extern uint8 iNESIRQa;
|
||||||
#define IRQCount iNESIRQCount
|
|
||||||
#define IRQLatch iNESIRQLatch
|
#define IRQa iNESIRQa
|
||||||
#define CHRBankList iNESCHRBankList
|
#define Mirroring iNESMirroring
|
||||||
#else
|
#define IRQCount iNESIRQCount
|
||||||
#endif
|
#define IRQLatch iNESIRQLatch
|
||||||
|
#define CHRBankList iNESCHRBankList
|
||||||
//mbg merge 6/29/06
|
#else
|
||||||
extern uint8 *ROM;
|
#endif
|
||||||
extern uint8 *VROM;
|
|
||||||
extern uint32 VROM_size;
|
//mbg merge 6/29/06
|
||||||
extern uint32 ROM_size;
|
extern uint8 *ROM;
|
||||||
extern int iNesSave(); //bbit Edited: line added
|
extern uint8 *VROM;
|
||||||
extern char LoadedRomFName[2048]; //bbit Edited: line added
|
extern uint32 VROM_size;
|
||||||
|
extern uint32 ROM_size;
|
||||||
//mbg merge 7/19/06 changed to c++ decl format
|
extern int iNesSave(); //bbit Edited: line added
|
||||||
struct iNES_HEADER {
|
extern char LoadedRomFName[2048]; //bbit Edited: line added
|
||||||
char ID[4]; /*NES^Z*/
|
|
||||||
uint8 ROM_size;
|
//mbg merge 7/19/06 changed to c++ decl format
|
||||||
uint8 VROM_size;
|
struct iNES_HEADER {
|
||||||
uint8 ROM_type;
|
char ID[4]; /*NES^Z*/
|
||||||
uint8 ROM_type2;
|
uint8 ROM_size;
|
||||||
uint8 reserve[8];
|
uint8 VROM_size;
|
||||||
|
uint8 ROM_type;
|
||||||
|
uint8 ROM_type2;
|
||||||
|
uint8 reserve[8];
|
||||||
|
|
||||||
void cleanup()
|
void cleanup()
|
||||||
{
|
{
|
||||||
if(!memcmp((char *)(this)+0x7,"DiskDude",8))
|
if(!memcmp((char *)(this)+0x7,"DiskDude",8))
|
||||||
|
@ -100,328 +103,330 @@ struct iNES_HEADER {
|
||||||
else
|
else
|
||||||
memset((char *)(this)+0xA,0,0x6);
|
memset((char *)(this)+0xA,0,0x6);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
void VRAM_BANK1(uint32 A, uint8 V);
|
void VRAM_BANK1(uint32 A, uint8 V);
|
||||||
void VRAM_BANK4(uint32 A,uint32 V);
|
void VRAM_BANK4(uint32 A,uint32 V);
|
||||||
|
|
||||||
void VROM_BANK1(uint32 A,uint32 V);
|
void VROM_BANK1(uint32 A,uint32 V);
|
||||||
void VROM_BANK2(uint32 A,uint32 V);
|
void VROM_BANK2(uint32 A,uint32 V);
|
||||||
void VROM_BANK4(uint32 A, uint32 V);
|
void VROM_BANK4(uint32 A, uint32 V);
|
||||||
void VROM_BANK8(uint32 V);
|
void VROM_BANK8(uint32 V);
|
||||||
void ROM_BANK8(uint32 A, uint32 V);
|
void ROM_BANK8(uint32 A, uint32 V);
|
||||||
void ROM_BANK16(uint32 A, uint32 V);
|
void ROM_BANK16(uint32 A, uint32 V);
|
||||||
void ROM_BANK32(uint32 V);
|
void ROM_BANK32(uint32 V);
|
||||||
|
|
||||||
extern uint8 vmask;
|
extern uint8 vmask;
|
||||||
extern uint32 vmask1;
|
extern uint32 vmask1;
|
||||||
extern uint32 vmask2;
|
extern uint32 vmask2;
|
||||||
extern uint32 vmask4;
|
extern uint32 vmask4;
|
||||||
extern uint32 pmask8;
|
extern uint32 pmask8;
|
||||||
extern uint8 pmask16;
|
extern uint8 pmask16;
|
||||||
extern uint8 pmask32;
|
extern uint8 pmask32;
|
||||||
|
|
||||||
void onemir(uint8 V);
|
void onemir(uint8 V);
|
||||||
void MIRROR_SET2(uint8 V);
|
void MIRROR_SET2(uint8 V);
|
||||||
void MIRROR_SET(uint8 V);
|
void MIRROR_SET(uint8 V);
|
||||||
|
|
||||||
void Mapper0_init(void);
|
void Mapper0_init(void);
|
||||||
void Mapper1_init(void);
|
void Mapper1_init(void);
|
||||||
//void Mapper2_init(void);
|
//void Mapper2_init(void);
|
||||||
//void Mapper3_init(void);
|
//void Mapper3_init(void);
|
||||||
void Mapper6_init(void);
|
void Mapper6_init(void);
|
||||||
//void Mapper7_init(void);
|
//void Mapper7_init(void);
|
||||||
void Mapper8_init(void);
|
void Mapper8_init(void);
|
||||||
void Mapper9_init(void);
|
void Mapper9_init(void);
|
||||||
void Mapper10_init(void);
|
void Mapper10_init(void);
|
||||||
//void Mapper11_init(void);
|
//void Mapper11_init(void);
|
||||||
void Mapper12_init(void);
|
void Mapper12_init(void);
|
||||||
//void Mapper13_init(void);
|
//void Mapper13_init(void);
|
||||||
void Mapper14_init(void);
|
void Mapper14_init(void);
|
||||||
void Mapper15_init(void);
|
void Mapper15_init(void);
|
||||||
void Mapper16_init(void);
|
void Mapper16_init(void);
|
||||||
void Mapper17_init(void);
|
void Mapper17_init(void);
|
||||||
void Mapper18_init(void);
|
void Mapper18_init(void);
|
||||||
void Mapper19_init(void);
|
void Mapper19_init(void);
|
||||||
void Mapper20_init(void);
|
void Mapper20_init(void);
|
||||||
void Mapper21_init(void);
|
void Mapper21_init(void);
|
||||||
void Mapper22_init(void);
|
void Mapper22_init(void);
|
||||||
void Mapper23_init(void);
|
void Mapper23_init(void);
|
||||||
void Mapper24_init(void);
|
void Mapper24_init(void);
|
||||||
void Mapper25_init(void);
|
void Mapper25_init(void);
|
||||||
void Mapper26_init(void);
|
void Mapper26_init(void);
|
||||||
void Mapper27_init(void);
|
void Mapper27_init(void);
|
||||||
void Mapper28_init(void);
|
void Mapper28_init(void);
|
||||||
void Mapper29_init(void);
|
void Mapper29_init(void);
|
||||||
void Mapper30_init(void);
|
void Mapper30_init(void);
|
||||||
void Mapper31_init(void);
|
void Mapper31_init(void);
|
||||||
void Mapper32_init(void);
|
void Mapper32_init(void);
|
||||||
void Mapper33_init(void);
|
void Mapper33_init(void);
|
||||||
void Mapper34_init(void);
|
void Mapper34_init(void);
|
||||||
void Mapper35_init(void);
|
void Mapper35_init(void);
|
||||||
void Mapper36_init(void);
|
void Mapper36_init(void);
|
||||||
//void Mapper37_init(void);
|
//void Mapper37_init(void);
|
||||||
void Mapper38_init(void);
|
void Mapper38_init(void);
|
||||||
void Mapper39_init(void);
|
void Mapper39_init(void);
|
||||||
void Mapper40_init(void);
|
void Mapper40_init(void);
|
||||||
void Mapper41_init(void);
|
void Mapper41_init(void);
|
||||||
void Mapper42_init(void);
|
void Mapper42_init(void);
|
||||||
//void Mapper43_init(void);
|
//void Mapper43_init(void);
|
||||||
void Mapper44_init(void);
|
void Mapper44_init(void);
|
||||||
void Mapper45_init(void);
|
void Mapper45_init(void);
|
||||||
void Mapper46_init(void);
|
void Mapper46_init(void);
|
||||||
void Mapper47_init(void);
|
void Mapper47_init(void);
|
||||||
void Mapper48_init(void);
|
void Mapper48_init(void);
|
||||||
void Mapper49_init(void);
|
void Mapper49_init(void);
|
||||||
void Mapper50_init(void);
|
void Mapper50_init(void);
|
||||||
void Mapper51_init(void);
|
void Mapper51_init(void);
|
||||||
void Mapper53_init(void);
|
void Mapper53_init(void);
|
||||||
void Mapper54_init(void);
|
void Mapper54_init(void);
|
||||||
void Mapper55_init(void);
|
void Mapper55_init(void);
|
||||||
void Mapper56_init(void);
|
void Mapper56_init(void);
|
||||||
void Mapper59_init(void);
|
void Mapper59_init(void);
|
||||||
void Mapper60_init(void);
|
void Mapper60_init(void);
|
||||||
void Mapper61_init(void);
|
void Mapper61_init(void);
|
||||||
void Mapper62_init(void);
|
void Mapper62_init(void);
|
||||||
void Mapper63_init(void);
|
void Mapper63_init(void);
|
||||||
void Mapper64_init(void);
|
void Mapper64_init(void);
|
||||||
void Mapper65_init(void);
|
void Mapper65_init(void);
|
||||||
//void Mapper66_init(void);
|
//void Mapper66_init(void);
|
||||||
void Mapper67_init(void);
|
void Mapper67_init(void);
|
||||||
void Mapper68_init(void);
|
void Mapper68_init(void);
|
||||||
void Mapper69_init(void);
|
void Mapper69_init(void);
|
||||||
//void Mapper70_init(void);
|
//void Mapper70_init(void);
|
||||||
void Mapper71_init(void);
|
void Mapper71_init(void);
|
||||||
void Mapper72_init(void);
|
void Mapper72_init(void);
|
||||||
void Mapper73_init(void);
|
void Mapper73_init(void);
|
||||||
void Mapper74_init(void);
|
void Mapper74_init(void);
|
||||||
void Mapper75_init(void);
|
void Mapper75_init(void);
|
||||||
void Mapper76_init(void);
|
void Mapper76_init(void);
|
||||||
void Mapper77_init(void);
|
void Mapper77_init(void);
|
||||||
//void Mapper78_init(void);
|
//void Mapper78_init(void);
|
||||||
void Mapper79_init(void);
|
void Mapper79_init(void);
|
||||||
void Mapper80_init(void);
|
void Mapper80_init(void);
|
||||||
void Mapper81_init(void);
|
void Mapper81_init(void);
|
||||||
void Mapper82_init(void);
|
void Mapper82_init(void);
|
||||||
void Mapper83_init(void);
|
void Mapper83_init(void);
|
||||||
void Mapper84_init(void);
|
void Mapper84_init(void);
|
||||||
void Mapper85_init(void);
|
void Mapper85_init(void);
|
||||||
void Mapper86_init(void);
|
void Mapper86_init(void);
|
||||||
//void Mapper87_init(void);
|
//void Mapper87_init(void);
|
||||||
void Mapper88_init(void);
|
void Mapper88_init(void);
|
||||||
void Mapper89_init(void);
|
void Mapper89_init(void);
|
||||||
void Mapper91_init(void);
|
void Mapper91_init(void);
|
||||||
void Mapper92_init(void);
|
void Mapper92_init(void);
|
||||||
//void Mapper93_init(void);
|
//void Mapper93_init(void);
|
||||||
//void Mapper94_init(void);
|
//void Mapper94_init(void);
|
||||||
void Mapper96_init(void);
|
void Mapper96_init(void);
|
||||||
void Mapper97_init(void);
|
void Mapper97_init(void);
|
||||||
void Mapper98_init(void);
|
void Mapper98_init(void);
|
||||||
void Mapper99_init(void);
|
void Mapper99_init(void);
|
||||||
void Mapper100_init(void);
|
void Mapper100_init(void);
|
||||||
void Mapper101_init(void);
|
void Mapper101_init(void);
|
||||||
void Mapper103_init(void);
|
void Mapper103_init(void);
|
||||||
void Mapper104_init(void);
|
void Mapper104_init(void);
|
||||||
void Mapper106_init(void);
|
void Mapper106_init(void);
|
||||||
//void Mapper107_init(void);
|
//void Mapper107_init(void);
|
||||||
void Mapper108_init(void);
|
void Mapper108_init(void);
|
||||||
void Mapper109_init(void);
|
void Mapper109_init(void);
|
||||||
void Mapper110_init(void);
|
void Mapper110_init(void);
|
||||||
void Mapper111_init(void);
|
void Mapper111_init(void);
|
||||||
//void Mapper113_init(void);
|
//void Mapper113_init(void);
|
||||||
void Mapper115_init(void);
|
void Mapper115_init(void);
|
||||||
void Mapper116_init(void);
|
void Mapper116_init(void);
|
||||||
//void Mapper117_init(void);
|
//void Mapper117_init(void);
|
||||||
void Mapper120_init(void);
|
void Mapper120_init(void);
|
||||||
void Mapper121_init(void);
|
void Mapper121_init(void);
|
||||||
void Mapper122_init(void);
|
void Mapper122_init(void);
|
||||||
void Mapper123_init(void);
|
void Mapper123_init(void);
|
||||||
void Mapper124_init(void);
|
void Mapper124_init(void);
|
||||||
void Mapper126_init(void);
|
void Mapper126_init(void);
|
||||||
void Mapper127_init(void);
|
void Mapper127_init(void);
|
||||||
void Mapper128_init(void);
|
void Mapper128_init(void);
|
||||||
void Mapper129_init(void);
|
void Mapper129_init(void);
|
||||||
void Mapper130_init(void);
|
void Mapper130_init(void);
|
||||||
void Mapper131_init(void);
|
void Mapper131_init(void);
|
||||||
void Mapper132_init(void);
|
void Mapper132_init(void);
|
||||||
void Mapper134_init(void);
|
void Mapper134_init(void);
|
||||||
void Mapper135_init(void);
|
void Mapper135_init(void);
|
||||||
void Mapper136_init(void);
|
void Mapper136_init(void);
|
||||||
void Mapper137_init(void);
|
void Mapper137_init(void);
|
||||||
void Mapper139_init(void);
|
void Mapper139_init(void);
|
||||||
//void Mapper140_init(void);
|
//void Mapper140_init(void);
|
||||||
void Mapper141_init(void);
|
void Mapper141_init(void);
|
||||||
void Mapper142_init(void);
|
void Mapper142_init(void);
|
||||||
void Mapper143_init(void);
|
void Mapper143_init(void);
|
||||||
//void Mapper144_init(void);
|
//void Mapper144_init(void);
|
||||||
void Mapper150_init(void);
|
void Mapper150_init(void);
|
||||||
void Mapper151_init(void);
|
void Mapper151_init(void);
|
||||||
//void Mapper152_init(void);
|
//void Mapper152_init(void);
|
||||||
void Mapper153_init(void);
|
void Mapper153_init(void);
|
||||||
void Mapper154_init(void);
|
void Mapper154_init(void);
|
||||||
void Mapper156_init(void);
|
void Mapper156_init(void);
|
||||||
void Mapper157_init(void);
|
void Mapper157_init(void);
|
||||||
//void Mapper158_init(void);
|
//void Mapper158_init(void);
|
||||||
void Mapper159_init(void);
|
void Mapper159_init(void);
|
||||||
void Mapper160_init(void);
|
void Mapper160_init(void);
|
||||||
void Mapper161_init(void);
|
void Mapper161_init(void);
|
||||||
void Mapper162_init(void);
|
void Mapper162_init(void);
|
||||||
void Mapper166_init(void);
|
void Mapper166_init(void);
|
||||||
void Mapper167_init(void);
|
void Mapper167_init(void);
|
||||||
void Mapper168_init(void);
|
void Mapper168_init(void);
|
||||||
void Mapper169_init(void);
|
void Mapper169_init(void);
|
||||||
void Mapper170_init(void);
|
void Mapper170_init(void);
|
||||||
void Mapper171_init(void);
|
void Mapper171_init(void);
|
||||||
void Mapper172_init(void);
|
void Mapper172_init(void);
|
||||||
void Mapper173_init(void);
|
void Mapper173_init(void);
|
||||||
void Mapper174_init(void);
|
void Mapper174_init(void);
|
||||||
void Mapper175_init(void);
|
void Mapper175_init(void);
|
||||||
void Mapper176_init(void);
|
void Mapper176_init(void);
|
||||||
void Mapper177_init(void);
|
void Mapper177_init(void);
|
||||||
void Mapper178_init(void);
|
void Mapper178_init(void);
|
||||||
void Mapper179_init(void);
|
void Mapper179_init(void);
|
||||||
//void Mapper180_init(void);
|
//void Mapper180_init(void);
|
||||||
//void Mapper181_init(void);
|
//void Mapper181_init(void);
|
||||||
//void Mapper184_init(void);
|
//void Mapper184_init(void);
|
||||||
//void Mapper185_init(void);
|
//void Mapper185_init(void);
|
||||||
//void Mapper189_init(void);
|
//void Mapper189_init(void);
|
||||||
//void Mapper192_init(void);
|
//void Mapper192_init(void);
|
||||||
void Mapper193_init(void);
|
void Mapper193_init(void);
|
||||||
//void Mapper194_init(void);
|
//void Mapper194_init(void);
|
||||||
//void Mapper195_init(void);
|
//void Mapper195_init(void);
|
||||||
void Mapper196_init(void);
|
void Mapper196_init(void);
|
||||||
void Mapper197_init(void);
|
void Mapper197_init(void);
|
||||||
//void Mapper198_init(void);
|
//void Mapper198_init(void);
|
||||||
void Mapper199_init(void);
|
void Mapper199_init(void);
|
||||||
//void Mapper200_init(void);
|
//void Mapper200_init(void);
|
||||||
void Mapper201_init(void);
|
void Mapper201_init(void);
|
||||||
void Mapper202_init(void);
|
void Mapper202_init(void);
|
||||||
void Mapper203_init(void);
|
void Mapper203_init(void);
|
||||||
void Mapper204_init(void);
|
void Mapper204_init(void);
|
||||||
void Mapper207_init(void);
|
void Mapper207_init(void);
|
||||||
//void Mapper211_init(void);
|
//void Mapper211_init(void);
|
||||||
void Mapper212_init(void);
|
void Mapper212_init(void);
|
||||||
void Mapper213_init(void);
|
void Mapper213_init(void);
|
||||||
void Mapper214_init(void);
|
void Mapper214_init(void);
|
||||||
//void Mapper218_init(void);
|
//void Mapper218_init(void);
|
||||||
void Mapper219_init(void);
|
void Mapper219_init(void);
|
||||||
//void Mapper220_init(void);
|
//void Mapper220_init(void);
|
||||||
void Mapper221_init(void);
|
void Mapper221_init(void);
|
||||||
//void Mapper222_init(void);
|
//void Mapper222_init(void);
|
||||||
void Mapper223_init(void);
|
void Mapper223_init(void);
|
||||||
void Mapper224_init(void);
|
void Mapper224_init(void);
|
||||||
void Mapper225_init(void);
|
void Mapper225_init(void);
|
||||||
//void Mapper226_init(void);
|
//void Mapper226_init(void);
|
||||||
void Mapper227_init(void);
|
void Mapper227_init(void);
|
||||||
void Mapper228_init(void);
|
void Mapper228_init(void);
|
||||||
void Mapper229_init(void);
|
void Mapper229_init(void);
|
||||||
void Mapper230_init(void);
|
void Mapper230_init(void);
|
||||||
void Mapper231_init(void);
|
void Mapper231_init(void);
|
||||||
void Mapper232_init(void);
|
void Mapper232_init(void);
|
||||||
void Mapper233_init(void);
|
void Mapper233_init(void);
|
||||||
void Mapper234_init(void);
|
void Mapper234_init(void);
|
||||||
//void Mapper235_init(void);
|
//void Mapper235_init(void);
|
||||||
void Mapper236_init(void);
|
void Mapper236_init(void);
|
||||||
void Mapper237_init(void);
|
void Mapper237_init(void);
|
||||||
void Mapper238_init(void);
|
void Mapper238_init(void);
|
||||||
void Mapper239_init(void);
|
void Mapper239_init(void);
|
||||||
void Mapper240_init(void);
|
void Mapper240_init(void);
|
||||||
void Mapper241_init(void);
|
void Mapper241_init(void);
|
||||||
void Mapper242_init(void);
|
void Mapper242_init(void);
|
||||||
void Mapper244_init(void);
|
void Mapper244_init(void);
|
||||||
void Mapper245_init(void);
|
void Mapper245_init(void);
|
||||||
void Mapper246_init(void);
|
void Mapper246_init(void);
|
||||||
void Mapper247_init(void);
|
void Mapper247_init(void);
|
||||||
void Mapper249_init(void);
|
void Mapper249_init(void);
|
||||||
void Mapper251_init(void);
|
void Mapper251_init(void);
|
||||||
void Mapper252_init(void);
|
void Mapper252_init(void);
|
||||||
void Mapper253_init(void);
|
void Mapper253_init(void);
|
||||||
void Mapper255_init(void);
|
void Mapper255_init(void);
|
||||||
|
|
||||||
void NSFVRC6_Init(void);
|
void NSFVRC6_Init(void);
|
||||||
void NSFMMC5_Init(void);
|
void NSFMMC5_Init(void);
|
||||||
void NSFAY_Init(void);
|
void NSFAY_Init(void);
|
||||||
void NSFN106_Init(void);
|
void NSFN106_Init(void);
|
||||||
void NSFVRC7_Init(void);
|
void NSFVRC7_Init(void);
|
||||||
void Mapper19_ESI(void);
|
void Mapper19_ESI(void);
|
||||||
|
|
||||||
void Mapper1_Init(CartInfo *);
|
void Mapper1_Init(CartInfo *);
|
||||||
void Mapper4_Init(CartInfo *);
|
void Mapper4_Init(CartInfo *);
|
||||||
void Mapper5_Init(CartInfo *);
|
void Mapper5_Init(CartInfo *);
|
||||||
void Mapper11_Init(CartInfo *);
|
void Mapper11_Init(CartInfo *);
|
||||||
void Mapper12_Init(CartInfo *);
|
void Mapper12_Init(CartInfo *);
|
||||||
void Mapper19_Init(CartInfo *);
|
void Mapper19_Init(CartInfo *);
|
||||||
void Mapper37_Init(CartInfo *);
|
void Mapper37_Init(CartInfo *);
|
||||||
void Mapper43_Init(CartInfo *);
|
void Mapper43_Init(CartInfo *);
|
||||||
void Mapper44_Init(CartInfo *);
|
void Mapper44_Init(CartInfo *);
|
||||||
void Mapper45_Init(CartInfo *);
|
void Mapper45_Init(CartInfo *);
|
||||||
void Mapper47_Init(CartInfo *);
|
void Mapper47_Init(CartInfo *);
|
||||||
void Mapper49_Init(CartInfo *);
|
void Mapper49_Init(CartInfo *);
|
||||||
void Mapper52_Init(CartInfo *);
|
void Mapper52_Init(CartInfo *);
|
||||||
void Mapper57_Init(CartInfo *);
|
void Mapper57_Init(CartInfo *);
|
||||||
//void Mapper58_Init(CartInfo *);
|
//void Mapper58_Init(CartInfo *);
|
||||||
void Mapper70_Init(CartInfo *);
|
void Mapper70_Init(CartInfo *);
|
||||||
void Mapper74_Init(CartInfo *);
|
void Mapper74_Init(CartInfo *);
|
||||||
void Mapper78_Init(CartInfo *);
|
void Mapper78_Init(CartInfo *);
|
||||||
void Mapper87_Init(CartInfo *);
|
void Mapper87_Init(CartInfo *);
|
||||||
void Mapper88_Init(CartInfo *);
|
void Mapper88_Init(CartInfo *);
|
||||||
void Mapper90_Init(CartInfo *);
|
void Mapper90_Init(CartInfo *);
|
||||||
void Mapper93_Init(CartInfo *);
|
void Mapper93_Init(CartInfo *);
|
||||||
void Mapper94_Init(CartInfo *);
|
void Mapper94_Init(CartInfo *);
|
||||||
void Mapper95_Init(CartInfo *);
|
void Mapper95_Init(CartInfo *);
|
||||||
void Mapper105_Init(CartInfo *);
|
void Mapper105_Init(CartInfo *);
|
||||||
void Mapper107_Init(CartInfo *);
|
void Mapper107_Init(CartInfo *);
|
||||||
void Mapper112_Init(CartInfo *);
|
void Mapper112_Init(CartInfo *);
|
||||||
void Mapper113_Init(CartInfo *);
|
void Mapper113_Init(CartInfo *);
|
||||||
void Mapper114_Init(CartInfo *);
|
void Mapper114_Init(CartInfo *);
|
||||||
void Mapper115_Init(CartInfo *);
|
void Mapper115_Init(CartInfo *);
|
||||||
void Mapper116_Init(CartInfo *);
|
void Mapper116_Init(CartInfo *);
|
||||||
void Mapper117_Init(CartInfo *);
|
void Mapper117_Init(CartInfo *);
|
||||||
void Mapper118_Init(CartInfo *);
|
void Mapper118_Init(CartInfo *);
|
||||||
void Mapper119_Init(CartInfo *);
|
void Mapper119_Init(CartInfo *);
|
||||||
void Mapper125_Init(CartInfo *);
|
void Mapper125_Init(CartInfo *);
|
||||||
void Mapper140_Init(CartInfo *);
|
void Mapper140_Init(CartInfo *);
|
||||||
void Mapper144_Init(CartInfo *);
|
void Mapper144_Init(CartInfo *);
|
||||||
void Mapper152_Init(CartInfo *);
|
void Mapper152_Init(CartInfo *);
|
||||||
void Mapper154_Init(CartInfo *);
|
void Mapper154_Init(CartInfo *);
|
||||||
void Mapper155_Init(CartInfo *);
|
void Mapper155_Init(CartInfo *);
|
||||||
void Mapper163_Init(CartInfo *);
|
void Mapper163_Init(CartInfo *);
|
||||||
void Mapper164_Init(CartInfo *);
|
void Mapper164_Init(CartInfo *);
|
||||||
void Mapper165_Init(CartInfo *);
|
void Mapper165_Init(CartInfo *);
|
||||||
void Mapper180_Init(CartInfo *);
|
void Mapper180_Init(CartInfo *);
|
||||||
void Mapper181_Init(CartInfo *);
|
void Mapper181_Init(CartInfo *);
|
||||||
void Mapper182_Init(CartInfo *);
|
void Mapper182_Init(CartInfo *);
|
||||||
void Mapper183_Init(CartInfo *);
|
void Mapper183_Init(CartInfo *);
|
||||||
void Mapper184_Init(CartInfo *);
|
void Mapper184_Init(CartInfo *);
|
||||||
void Mapper185_Init(CartInfo *);
|
void Mapper185_Init(CartInfo *);
|
||||||
void Mapper186_Init(CartInfo *);
|
void Mapper186_Init(CartInfo *);
|
||||||
void Mapper187_Init(CartInfo *);
|
void Mapper187_Init(CartInfo *);
|
||||||
void Mapper188_Init(CartInfo *);
|
void Mapper188_Init(CartInfo *);
|
||||||
void Mapper189_Init(CartInfo *);
|
void Mapper189_Init(CartInfo *);
|
||||||
void Mapper191_Init(CartInfo *);
|
void Mapper191_Init(CartInfo *);
|
||||||
void Mapper192_Init(CartInfo *);
|
void Mapper192_Init(CartInfo *);
|
||||||
void Mapper194_Init(CartInfo *);
|
void Mapper194_Init(CartInfo *);
|
||||||
void Mapper195_Init(CartInfo *);
|
void Mapper195_Init(CartInfo *);
|
||||||
void Mapper198_Init(CartInfo *);
|
void Mapper198_Init(CartInfo *);
|
||||||
void Mapper199_Init(CartInfo *);
|
void Mapper199_Init(CartInfo *);
|
||||||
void Mapper200_Init(CartInfo *);
|
void Mapper200_Init(CartInfo *);
|
||||||
void Mapper205_Init(CartInfo *);
|
void Mapper205_Init(CartInfo *);
|
||||||
void Mapper208_Init(CartInfo *);
|
void Mapper208_Init(CartInfo *);
|
||||||
void Mapper209_Init(CartInfo *);
|
void Mapper209_Init(CartInfo *);
|
||||||
void Mapper210_Init(CartInfo *);
|
void Mapper210_Init(CartInfo *);
|
||||||
void Mapper211_Init(CartInfo *);
|
void Mapper211_Init(CartInfo *);
|
||||||
void Mapper215_Init(CartInfo *);
|
void Mapper215_Init(CartInfo *);
|
||||||
void Mapper216_Init(CartInfo *);
|
void Mapper216_Init(CartInfo *);
|
||||||
void Mapper217_Init(CartInfo *);
|
void Mapper217_Init(CartInfo *);
|
||||||
void Mapper220_Init(CartInfo *);
|
void Mapper220_Init(CartInfo *);
|
||||||
void Mapper222_Init(CartInfo *);
|
void Mapper222_Init(CartInfo *);
|
||||||
void Mapper226_Init(CartInfo *);
|
void Mapper226_Init(CartInfo *);
|
||||||
void Mapper235_Init(CartInfo *);
|
void Mapper235_Init(CartInfo *);
|
||||||
void Mapper236_Init(CartInfo *);
|
void Mapper236_Init(CartInfo *);
|
||||||
void Mapper237_Init(CartInfo *);
|
void Mapper237_Init(CartInfo *);
|
||||||
void Mapper240_Init(CartInfo *);
|
void Mapper240_Init(CartInfo *);
|
||||||
void Mapper245_Init(CartInfo *);
|
void Mapper245_Init(CartInfo *);
|
||||||
void Mapper249_Init(CartInfo *);
|
void Mapper249_Init(CartInfo *);
|
||||||
void Mapper250_Init(CartInfo *);
|
void Mapper250_Init(CartInfo *);
|
||||||
void Mapper254_Init(CartInfo *);
|
void Mapper254_Init(CartInfo *);
|
||||||
|
|
||||||
|
#endif
|
|
@ -330,6 +330,8 @@ static int fceu_message(lua_State *L) {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
static int rom_readbyte(lua_State *L) { lua_pushinteger(L, FCEU_ReadRomByte(luaL_checkinteger(L,1))); return 1; }
|
||||||
|
static int rom_readbytesigned(lua_State *L) { lua_pushinteger(L, (signed char)FCEU_ReadRomByte(luaL_checkinteger(L,1))); return 1; }
|
||||||
static int memory_readbyte(lua_State *L) { lua_pushinteger(L, FCEU_CheatGetByte(luaL_checkinteger(L,1))); return 1; }
|
static int memory_readbyte(lua_State *L) { lua_pushinteger(L, FCEU_CheatGetByte(luaL_checkinteger(L,1))); return 1; }
|
||||||
static int memory_writebyte(lua_State *L) { FCEU_CheatSetByte(luaL_checkinteger(L,1), luaL_checkinteger(L,2)); return 0; }
|
static int memory_writebyte(lua_State *L) { FCEU_CheatSetByte(luaL_checkinteger(L,1), luaL_checkinteger(L,2)); return 0; }
|
||||||
static int memory_readbyterange(lua_State *L) {
|
static int memory_readbyterange(lua_State *L) {
|
||||||
|
@ -1507,6 +1509,13 @@ static const struct luaL_reg fceulib [] = {
|
||||||
{NULL,NULL}
|
{NULL,NULL}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
static const struct luaL_reg romlib [] = {
|
||||||
|
{"readbyte", rom_readbyte},
|
||||||
|
{"readbytesigned", rom_readbytesigned},
|
||||||
|
{NULL,NULL}
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
static const struct luaL_reg memorylib [] = {
|
static const struct luaL_reg memorylib [] = {
|
||||||
|
|
||||||
{"readbyte", memory_readbyte},
|
{"readbyte", memory_readbyte},
|
||||||
|
@ -1653,6 +1662,7 @@ int FCEU_LoadLuaCode(const char *filename) {
|
||||||
|
|
||||||
luaL_register(L, "FCEU", fceulib);
|
luaL_register(L, "FCEU", fceulib);
|
||||||
luaL_register(L, "memory", memorylib);
|
luaL_register(L, "memory", memorylib);
|
||||||
|
luaL_register(L, "rom", romlib);
|
||||||
luaL_register(L, "joypad", joypadlib);
|
luaL_register(L, "joypad", joypadlib);
|
||||||
luaL_register(L, "savestate", savestatelib);
|
luaL_register(L, "savestate", savestatelib);
|
||||||
luaL_register(L, "movie", movielib);
|
luaL_register(L, "movie", movielib);
|
||||||
|
|
Loading…
Reference in New Issue