1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 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