start new makefile, migrate to libpicofe

This commit is contained in:
notaz 2013-06-22 19:16:08 +03:00
parent 4685e5a10e
commit e743be2070
47 changed files with 246 additions and 6342 deletions

View file

@ -1,3 +1,8 @@
#ifndef __MENU_PICO_H__
#define __MENU_PICO_H__
#include "../libpicofe/menu.h"
typedef enum
{
MA_NONE = 1,
@ -92,3 +97,10 @@ typedef enum
MA_CTRL_DONE,
} menu_id;
void menu_init(void);
void menu_loop(void);
int menu_loop_tray(void);
void menu_romload_prepare(const char *rom_name);
void menu_romload_end(void);
#endif // __MENU_PICO_H__