unified menu wip and some reorganization for it
[libpicofe.git] / psp / emu.h
CommitLineData
2951214e 1// (c) Copyright 2006-2007 notaz, All rights reserved.
2// Free for non-commercial use.
3
4// For commercial use, separate licencing terms must be obtained.
5
6
7
2951214e 8extern char romFileName[];
dfa8d77a 9extern int engineState, engineStateSuspend;
2951214e 10
11
12void emu_Init(void);
13void emu_Deinit(void);
14void emu_Loop(void);
15void emu_ResetGame(void);
677b5dd8 16void emu_HandleResume(void);
2951214e 17
6f748c47 18void emu_msg_cb(const char *msg);
2951214e 19
5ecedd0c 20// actually comes from Pico/Misc_amips.s
21void memset32_uncached(int *dest, int c, int count);
2951214e 22