mirror of
https://github.com/ekeeke/Genesis-Plus-GX.git
synced 2024-12-29 04:31:49 +01:00
d66d747d98
- added port $3E emulation (SMS, GG) - added SMS & GG BIOS support - added an option to run BIOS without cartridge - added separate ROM browsers for SG-1000, Master System, Game Gear & Mega Drive / Genesis - changed Cheat menu icon - moved ROM device selection (SD,USB,DVD) to menu options - moved savestate compression/decompression out of emulator core - removed useless background images & background color option - prevented deletion of cheat files when no valid codes are found left - added IOS patch on startup to fix Homebrew Channel network bug when <no_ios_reload> option is used [GUI] -
38 lines
703 B
C
38 lines
703 B
C
#ifndef _SHARED_H_
|
|
#define _SHARED_H_
|
|
|
|
#include <stdio.h>
|
|
#include <math.h>
|
|
|
|
#include "types.h"
|
|
#include "macros.h"
|
|
#include "m68k.h"
|
|
#include "z80.h"
|
|
#include "system.h"
|
|
#include "genesis.h"
|
|
#include "vdp_ctrl.h"
|
|
#include "vdp_render.h"
|
|
#include "mem68k.h"
|
|
#include "memz80.h"
|
|
#include "membnk.h"
|
|
#include "io_ctrl.h"
|
|
#include "input.h"
|
|
#include "state.h"
|
|
#include "sound.h"
|
|
#include "sn76489.h"
|
|
#include "ym2413.h"
|
|
#include "ym2612.h"
|
|
#include "loadrom.h"
|
|
#include "sms_cart.h"
|
|
#include "md_cart.h"
|
|
#include "md_eeprom.h"
|
|
#include "gg_eeprom.h"
|
|
#include "sram.h"
|
|
#include "ggenie.h"
|
|
#include "areplay.h"
|
|
#include "svp.h"
|
|
#include "osd.h"
|
|
|
|
#endif /* _SHARED_H_ */
|
|
|