* round trip xml launch * roms load * removed debug * added binary data and changed rom format * changed hex format * fixed bug * added structure and start/length * removed base64 support * removed base64 support * fixed parsing bugs * fixed hex parse bug * fixed parser * fixing paths * fixed rbf parser * fixed initialization bug * fixed extension removal for when there are multiple extension options * fixed core path and cleaned up filelength * added md5 checks to arcade roms * fixed rbf search * added error support * Simplify error checking code * fixed arcade error message pop up * fixed bug in part zip initialization * removed dtdt * don't load second rom0 if first works * fixed directory problem * added more comments * added / to zip path * fixed / bug, truncate mame zip error message * fixed scrolling RBF * fixed scrolling name and error message * added code to remove _date in scrolling text * remove redundant /
31 lines
645 B
C
31 lines
645 B
C
// Minimig support
|
|
#include "support/minimig/minimig_config.h"
|
|
#include "support/minimig/minimig_boot.h"
|
|
#include "support/minimig/minimig_fdd.h"
|
|
#include "support/minimig/minimig_hdd.h"
|
|
|
|
// SharpMz support
|
|
#include "support/sharpmz/sharpmz.h"
|
|
|
|
// Archie support
|
|
#include "support/archie/archie.h"
|
|
|
|
// ST (Atari) support
|
|
#include "support/st/st_ikbd.h"
|
|
#include "support/st/st_tos.h"
|
|
|
|
// X86 support
|
|
#include "support/x86/x86.h"
|
|
|
|
// SNES support
|
|
#include "support/snes/snes.h"
|
|
|
|
// NeoGeo support
|
|
#include "support/neogeo/loader.h"
|
|
|
|
// Arcade support
|
|
#include "support/arcade/romutils.h"
|
|
|
|
// MEGACD support
|
|
#include "support/megacd/megacd.h"
|