diff options
Diffstat (limited to 'shell/menu/menu.h')
-rw-r--r-- | shell/menu/menu.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/shell/menu/menu.h b/shell/menu/menu.h new file mode 100644 index 0000000..8b81ac3 --- /dev/null +++ b/shell/menu/menu.h @@ -0,0 +1,18 @@ +#ifndef MENU_H +#define MENU_H + +#include <stdint.h> + +#ifndef PATH_MAX +#define PATH_MAX 2048 +#endif + +#define RGB565(r,g,b) ((r << 8) | (g << 3) | (b >> 3)) + +extern uint32_t emulator_state; +extern uint32_t done; + +extern void Menu(void); +extern void Init_Configuration(void); + +#endif |