X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=gp2x%2Femu.c;h=f5052dbd21f2f79e3d4d250fe51f96c486c5d1b5;hb=049a6b3e80151f6a5af726e25478ed15e111dfcc;hp=b9079a925112ee75569db477e92b59f7828b0f32;hpb=24b24674aedbdcb4432ab2ed823c3d9c97852da4;p=libpicofe.git diff --git a/gp2x/emu.c b/gp2x/emu.c index b9079a9..f5052db 100644 --- a/gp2x/emu.c +++ b/gp2x/emu.c @@ -25,6 +25,7 @@ #include "../common/input.h" #include "../linux/sndout_oss.h" #include "cpuctrl.h" +#include "version.h" #include #include @@ -40,11 +41,8 @@ #endif -int engineState; int select_exits = 0; -char romFileName[PATH_MAX]; - extern int crashed_940; static short __attribute__((aligned(4))) sndBuffer[2*44100/50]; @@ -1065,3 +1063,24 @@ void emu_ResetGame(void) reset_timing = 1; } +const char *plat_get_credits(void) +{ + return "PicoDrive v" VERSION " (c) notaz, 2006-2009\n\n\n" + "Credits:\n" + "fDave: Cyclone 68000 core,\n" + " base code of PicoDrive\n" + "Reesy & FluBBa: DrZ80 core\n" + "MAME devs: YM2612 and SN76496 cores\n" + "rlyeh and others: minimal SDK\n" + "Squidge: squidgehack\n" + "Dzz: ARM940 sample\n" + "GnoStiC / Puck2099: USB joy code\n" + "craigix: GP2X hardware\n" + "ketchupgun: skin design\n" + "\n" + "special thanks (for docs, ideas):\n" + " Charles MacDonald, Haze,\n" + " Stephane Dallongeville,\n" + " Lordus, Exophase, Rokas,\n" + " Nemesis, Tasco Deluxe"; +}