diff options
| author | Yang Liu <liuyang22@iscas.ac.cn> | 2025-04-02 01:02:07 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-04-01 19:02:07 +0200 |
| commit | 2c7a2082e624a78e42199d90f7d9fa90473c26c2 (patch) | |
| tree | 2da6c474edf66752c1f36250aa8266163b4ba3e7 /src/libtools/threads.c | |
| parent | 3230265646a48abef02a5c7873490e10ffc0afb5 (diff) | |
| download | box64-2c7a2082e624a78e42199d90f7d9fa90473c26c2.tar.gz box64-2c7a2082e624a78e42199d90f7d9fa90473c26c2.zip | |
Introduced box64cpu.h for exported interpreter and dynarec functions (#2490)
Diffstat (limited to 'src/libtools/threads.c')
| -rw-r--r-- | src/libtools/threads.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/libtools/threads.c b/src/libtools/threads.c index 40ec2c62..2454f929 100644 --- a/src/libtools/threads.c +++ b/src/libtools/threads.c @@ -15,15 +15,16 @@ #include "box64context.h" #include "threads.h" #include "emu/x64emu_private.h" -#include "x64run.h" #include "x64emu.h" #include "box64stack.h" +#include "box64cpu.h" +#include "box64cpu.h" +#include "box64cpu_util.h" #include "callback.h" #include "custommem.h" #include "khash.h" #include "emu/x64run_private.h" #include "x64trace.h" -#include "dynarec.h" #include "bridge.h" #include "myalign.h" #ifdef DYNAREC |