X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=psp%2Femu.h;h=17b20e761c4a93a2f367ffbb6e98960df6aa7c31;hb=9fe01b969331470c64bb5b2acf56875a319e3617;hp=d122a20d75cc208fc13057be632adfe5fde3e2f4;hpb=6f748c477fca1c4962358f163fa19e3b5710bc33;p=libpicofe.git diff --git a/psp/emu.h b/psp/emu.h index d122a20..17b20e7 100644 --- a/psp/emu.h +++ b/psp/emu.h @@ -14,6 +14,7 @@ enum TPicoGameState { PGS_ReloadRom, PGS_Menu, PGS_RestartRun, + PGS_Suspending, }; extern char romFileName[]; @@ -25,7 +26,10 @@ void emu_Deinit(void); void emu_Loop(void); void emu_ResetGame(void); void emu_forcedFrame(void); +void emu_HandleResume(void); void emu_msg_cb(const char *msg); +// actually comes from Pico/Misc_amips.s +void memset32_uncached(int *dest, int c, int count);