update build, use common fb code
[ginge.git] / loader / header.h
CommitLineData
2ce69bdf 1#include "../common/host_fb.h"
11913091 2
3void do_entry(unsigned long entry, void *stack_frame, int stack_frame_cnt, void *exitf);
4
5void do_patches(void *ptr, unsigned int size);
6
7void emu_init(void *map_bottom);
8void *emu_mmap_dev(unsigned int length, int prot, int flags, unsigned int offset);
3d295a9f 9int emu_read_gpiodev(void *buf, int count);
10
3d295a9f 11int host_read_btns(void);
12
13enum { GP2X_UP = 0, GP2X_LEFT = 2, GP2X_DOWN = 4, GP2X_RIGHT = 6,
14 GP2X_START = 8, GP2X_SELECT = 9, GP2X_L = 10, GP2X_R = 11,
15 GP2X_A = 12, GP2X_B = 13, GP2X_X = 14, GP2X_Y = 15,
16 GP2X_VOL_UP = 16, GP2X_VOL_DOWN = 17, GP2X_PUSH = 18 };
11913091 17
18#define ARRAY_SIZE(x) (sizeof(x) / sizeof(x[0]))
19