X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=psp%2Fmain.c;h=bad56a9a8cfddaf0a3bd2ba865639542f2a14ce7;hb=117f236a4df7e19866bef195fa38ca022ff4b529;hp=4f515169c32574fd0b67f49e18e20744323d5458;hpb=a6df06b7633a061862258ec47fa0f6b0efcbe26f;p=libpicofe.git diff --git a/psp/main.c b/psp/main.c index 4f51516..bad56a9 100644 --- a/psp/main.c +++ b/psp/main.c @@ -1,3 +1,9 @@ +// (c) Copyright 2007 notaz, All rights reserved. +// Free for non-commercial use. + +// For commercial use, separate licencing terms must be obtained. + +#include #include "psp.h" #include "emu.h" #include "menu.h" @@ -7,17 +13,34 @@ #include "../common/lprintf.h" #include "version.h" -int main() +#define GPROF 0 +#define GCOV 0 + +#if GPROF +#include +#endif + +#if GCOV +#include +#include + +void dummy(void) { - int mp3_ret; + engineState = atoi(romFileName); + setbuf(NULL, NULL); + getenv(NULL); +} +#endif +int main() +{ lprintf("\nPicoDrive v" VERSION " " __DATE__ " " __TIME__ "\n"); psp_init(); - emu_ReadConfig(0, 0); emu_Init(); menu_init(); - mp3_ret = mp3_init(); + // moved to emu_Loop(), after CPU clock change.. + //mp3_init(); engineState = PGS_Menu; @@ -26,7 +49,12 @@ int main() switch (engineState) { case PGS_Menu: +#if !GPROF menu_loop(); +#else + strcpy(romFileName, currentConfig.lastRomFile); + engineState = PGS_ReloadRom; +#endif break; case PGS_ReloadRom: @@ -45,6 +73,9 @@ int main() case PGS_Running: emu_Loop(); +#if GPROF + goto endloop; +#endif break; case PGS_Quit: @@ -58,9 +89,14 @@ int main() endloop: - if (mp3_ret == 0) mp3_deinit(); + mp3_deinit(); emu_Deinit(); +#if GPROF + gprof_cleanup(); +#endif +#if !GCOV psp_finish(); +#endif return 0; }