6cadc2da |
1 | // (c) Copyright 2006-2007 notaz, All rights reserved.\r |
cc68a136 |
2 | // Free for non-commercial use.\r |
3 | \r |
4 | // For commercial use, separate licencing terms must be obtained.\r |
5 | \r |
6 | \r |
7 | \r |
8 | // engine states\r |
9 | enum TPicoGameState {\r |
10 | PGS_Paused = 1,\r |
11 | PGS_Running,\r |
12 | PGS_Quit,\r |
13 | PGS_KeyConfig,\r |
14 | PGS_ReloadRom,\r |
15 | PGS_Menu,\r |
721cd396 |
16 | PGS_RestartRun,\r |
cc68a136 |
17 | };\r |
18 | \r |
cc68a136 |
19 | extern char romFileName[];\r |
20 | extern int engineState;\r |
cc68a136 |
21 | \r |
22 | \r |
cc68a136 |
23 | void emu_Init(void);\r |
24 | void emu_Deinit(void);\r |
cc68a136 |
25 | void emu_Loop(void);\r |
26 | void emu_ResetGame(void);\r |
ea8c405f |
27 | void emu_forcedFrame(void);\r |
28 | \r |
29 | void osd_text(int x, int y, const char *text);\r |
bf098bc5 |
30 | \r |