initial psp code, functional menu

git-svn-id: file:///home/notaz/opt/svn/PicoDrive/platform@274 be3aeb3a-fb24-0410-a615-afba39da0efa
This commit is contained in:
notaz 2007-10-11 20:43:48 +00:00
parent e86e20be70
commit 2951214ea6
15 changed files with 2135 additions and 5 deletions

59
psp/main.c Normal file
View file

@ -0,0 +1,59 @@
#include "psp.h"
#include "emu.h"
#include "menu.h"
#include "../common/menu.h"
#include "../common/lprintf.h"
int main()
{
psp_init();
// emu_ReadConfig(0, 0);
emu_Init();
menu_init();
engineState = PGS_Menu;
for (;;)
{
switch (engineState)
{
case PGS_Menu:
menu_loop();
break;
case PGS_ReloadRom:
/*
if (emu_ReloadRom())
engineState = PGS_Running;
else {
lprintf("PGS_ReloadRom == 0\n");
engineState = PGS_Menu;
}
*/
break;
case PGS_RestartRun:
engineState = PGS_Running;
case PGS_Running:
// emu_Loop();
break;
case PGS_Quit:
goto endloop;
default:
lprintf("engine got into unknown state (%i), exitting\n", engineState);
goto endloop;
}
}
endloop:
emu_Deinit();
psp_finish();
return 0;
}