X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=loader%2Fheader.h;h=edde685c4aec5a456bfcbe4e721ed44b5e9880f2;hb=cbd18fd2d426540a4101b7345c93f49b6fbbfa6d;hp=7bff116d76d43ad88b28ad850090cc453a75b003;hpb=88d814e3677c8b71a62382bf839f452960472cac;p=ginge.git diff --git a/loader/header.h b/loader/header.h index 7bff116..edde685 100644 --- a/loader/header.h +++ b/loader/header.h @@ -32,10 +32,11 @@ enum { FAKEDEV_GPIO, FAKEDEV_FB0, FAKEDEV_FB1, - FAKEDEV_MMUHACK, - FAKEDEV_TTY0, + FAKEDEV_MMUHACK, // 1005 FAKEDEV_WM97XX, FAKEDEV_WM97XX_P, + FAKEDEV_TTY, // 1008 + FAKEDEV_TTY0, FAKEDEV_FD_BOUNDARY, }; @@ -43,7 +44,7 @@ void do_patches(void *ptr, unsigned int size); struct op_context; -void emu_init(void *map_bottom); +void emu_init(void *map_bottom[2], int is_dl); void emu_call_handle_op(struct op_context *op_ctx); long emu_do_mmap(unsigned int length, int prot, int flags, int fd, unsigned int offset); long emu_do_munmap(void *addr, unsigned int length); @@ -52,6 +53,8 @@ long emu_do_read(int fd, void *buf, int count); void *emu_do_fopen(const char *path, const char *mode); int emu_do_system(const char *command); long emu_do_execve(const char *filename, char *const argv[], char *const envp[]); +const char *emu_wrap_path(const char *path); +void emu_wrap_path_free(const char *w_path, const char *old_path); int host_init(void); int host_read_btns(void);