about summary refs log tree commit diff stats
path: root/src/tools/callback.c
diff options
context:
space:
mode:
authorYang Liu <liuyang22@iscas.ac.cn>2025-04-02 01:02:07 +0800
committerGitHub <noreply@github.com>2025-04-01 19:02:07 +0200
commit2c7a2082e624a78e42199d90f7d9fa90473c26c2 (patch)
tree2da6c474edf66752c1f36250aa8266163b4ba3e7 /src/tools/callback.c
parent3230265646a48abef02a5c7873490e10ffc0afb5 (diff)
downloadbox64-2c7a2082e624a78e42199d90f7d9fa90473c26c2.tar.gz
box64-2c7a2082e624a78e42199d90f7d9fa90473c26c2.zip
Introduced box64cpu.h for exported interpreter and dynarec functions (#2490)
Diffstat (limited to 'src/tools/callback.c')
-rw-r--r--src/tools/callback.c6
1 files changed, 3 insertions, 3 deletions
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
+}