X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=platform%2Fpsp%2Fmain.c;h=4c7eef62a7a656e0e0f0f89eee3f0c4efbded2fc;hb=c060a9ab9c428e1ed9c4159b56529a2a36031e44;hp=4f515169c32574fd0b67f49e18e20744323d5458;hpb=4b167c12c7ebb23223c347793a2b4d5e9712e384;p=picodrive.git diff --git a/platform/psp/main.c b/platform/psp/main.c index 4f51516..4c7eef6 100644 --- a/platform/psp/main.c +++ b/platform/psp/main.c @@ -1,23 +1,48 @@ +// (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" #include "mp3.h" #include "../common/menu.h" #include "../common/emu.h" +#include "../common/config.h" #include "../common/lprintf.h" #include "version.h" -int main() +#ifdef GPROF +#include +#endif + +#ifdef GCOV +#include +#include + +void dummy(void) { - int mp3_ret; + engineState = atoi(romFileName); + setbuf(NULL, NULL); + getenv(NULL); +} +#endif +int pico_main(void) +{ lprintf("\nPicoDrive v" VERSION " " __DATE__ " " __TIME__ "\n"); psp_init(); + emu_prepareDefaultConfig(); emu_ReadConfig(0, 0); + config_readlrom(PicoConfigFile); + emu_Init(); menu_init(); - mp3_ret = mp3_init(); + // moved to emu_Loop(), after CPU clock change.. + //mp3_init(); engineState = PGS_Menu; @@ -26,7 +51,12 @@ int main() switch (engineState) { case PGS_Menu: +#ifndef GPROF menu_loop(); +#else + strcpy(romFileName, lastRomFile); + engineState = PGS_ReloadRom; +#endif break; case PGS_ReloadRom: @@ -40,11 +70,23 @@ int main() } break; + case PGS_Suspending: + while (engineState == PGS_Suspending) + psp_wait_suspend(); + break; + case PGS_RestartRun: engineState = PGS_Running; case PGS_Running: + if (psp_unhandled_suspend) { + psp_resume_suspend(); + emu_HandleResume(); + } emu_Loop(); +#ifdef GPROF + goto endloop; +#endif break; case PGS_Quit: @@ -58,9 +100,14 @@ int main() endloop: - if (mp3_ret == 0) mp3_deinit(); + mp3_deinit(); emu_Deinit(); +#ifdef GPROF + gprof_cleanup(); +#endif +#ifndef GCOV psp_finish(); +#endif return 0; }