X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=deps%2Flightrec%2Flightrec.h;h=3be8e0a9adda0736f377b9ca3cacd3689461d7da;hb=41bc558fbe8ff0d8bf822ab2a470ea6bd61a1835;hp=5a66e73e1a62ffb9ed10b9c03ae8a39b3eb88378;hpb=e2b16a701e0031a3b4045e9d66ede4abf143b803;p=pcsx_rearmed.git diff --git a/deps/lightrec/lightrec.h b/deps/lightrec/lightrec.h index 5a66e73e..3be8e0a9 100644 --- a/deps/lightrec/lightrec.h +++ b/deps/lightrec/lightrec.h @@ -87,14 +87,17 @@ enum psx_map { struct lightrec_mem_map_ops { void (*sb)(struct lightrec_state *, u32 opcode, - void *host, u32 addr, u8 data); + void *host, u32 addr, u32 data); void (*sh)(struct lightrec_state *, u32 opcode, - void *host, u32 addr, u16 data); + void *host, u32 addr, u32 data); void (*sw)(struct lightrec_state *, u32 opcode, void *host, u32 addr, u32 data); u8 (*lb)(struct lightrec_state *, u32 opcode, void *host, u32 addr); u16 (*lh)(struct lightrec_state *, u32 opcode, void *host, u32 addr); u32 (*lw)(struct lightrec_state *, u32 opcode, void *host, u32 addr); + u32 (*lwu)(struct lightrec_state *, u32 opcode, void *host, u32 addr); + void (*swu)(struct lightrec_state *, u32 opcode, + void *host, u32 addr, u32 data); }; struct lightrec_mem_map {