mirror of
https://github.com/RaySollium99/picodrive.git
synced 2025-09-05 15:27:46 -04:00
giz menu works
git-svn-id: file:///home/notaz/opt/svn/PicoDrive@231 be3aeb3a-fb24-0410-a615-afba39da0efa
This commit is contained in:
parent
b39bf06ad7
commit
e5f426aa2e
35 changed files with 2507 additions and 432 deletions
33
platform/gizmondo/emu.c
Normal file
33
platform/gizmondo/emu.c
Normal file
|
@ -0,0 +1,33 @@
|
|||
#include <windows.h>
|
||||
|
||||
#include "emu.h"
|
||||
|
||||
char romFileName[MAX_PATH];
|
||||
int engineState;
|
||||
currentConfig_t currentConfig;
|
||||
|
||||
unsigned char *rom_data = NULL;
|
||||
unsigned char *PicoDraw2FB = NULL; // temporary buffer for alt renderer
|
||||
int state_slot = 0;
|
||||
int reset_timing = 0;
|
||||
int config_slot = 0, config_slot_current = 0;
|
||||
|
||||
|
||||
|
||||
|
||||
int emu_ReloadRom(void){}
|
||||
void emu_Init(void){}
|
||||
void emu_Deinit(void){}
|
||||
int emu_SaveLoadGame(int load, int sram){}
|
||||
void emu_Loop(void){}
|
||||
void emu_ResetGame(void){}
|
||||
int emu_ReadConfig(int game, int no_defaults){}
|
||||
int emu_WriteConfig(int game){}
|
||||
char *emu_GetSaveFName(int load, int is_sram, int slot){}
|
||||
int emu_check_save_file(int slot){}
|
||||
void emu_set_save_cbs(int gz){}
|
||||
void emu_forced_frame(void){}
|
||||
int emu_cd_check(char **bios_file){}
|
||||
int find_bios(int region, char **bios_file){}
|
||||
void scaling_update(void){}
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue