diff options
Diffstat (limited to 'src/tools')
| -rw-r--r-- | src/tools/box64stack.c | 1 | ||||
| -rw-r--r-- | src/tools/callback.c | 6 |
2 files changed, 4 insertions, 3 deletions
diff --git a/src/tools/box64stack.c b/src/tools/box64stack.c index 8b5249d9..ce8888e5 100644 --- a/src/tools/box64stack.c +++ b/src/tools/box64stack.c @@ -6,6 +6,7 @@ #include "box64stack.h" #include "box64context.h" +#include "box64cpu_util.h" #include "elfloader.h" #include "debug.h" #include "emu/x64emu_private.h" diff --git a/src/tools/callback.c b/src/tools/callback.c index 4cdcc754..f7e914b4 100644 --- a/src/tools/callback.c +++ b/src/tools/callback.c @@ -6,12 +6,12 @@ #include "debug.h" #include "x64emu.h" -#include "x64run.h" #include "emu/x64emu_private.h" #include "emu/x64run_private.h" #include "box64context.h" #include "box64stack.h" -#include "dynarec.h" +#include "box64cpu.h" +#include "box64cpu_util.h" #ifdef BOX32 #include "box32.h" #endif @@ -439,4 +439,4 @@ uint64_t RunFunctionWindows(uintptr_t fnc, int nargs, ...) uint64_t ret = R_RAX; return ret; -} \ No newline at end of file +} |