mirror of
https://github.com/N64Recomp/N64Recomp.git
synced 2025-05-18 09:24:54 +00:00
Add support for cop1 writes and reads to live recompiler, WIP relocation support
This commit is contained in:
parent
cc5294efa4
commit
c6d7eae742
3 changed files with 110 additions and 37 deletions
|
@ -48,6 +48,8 @@ namespace N64Recomp {
|
|||
uint32_t base_event_index;
|
||||
void (*cop0_status_write)(recomp_context* ctx, gpr value);
|
||||
gpr (*cop0_status_read)(recomp_context* ctx);
|
||||
void (*cop1_cs_read)(recomp_context* ctx, gpr value);
|
||||
gpr (*cop1_cs_write)(recomp_context* ctx);
|
||||
void (*switch_error)(const char* func, uint32_t vram, uint32_t jtbl);
|
||||
void (*do_break)(uint32_t vram);
|
||||
recomp_func_t* (*get_function)(int32_t vram);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue