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/elfs | |
| 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/elfs')
| -rw-r--r-- | src/elfs/elfloader.c | 3 | ||||
| -rw-r--r-- | src/elfs/elfloader32.c | 1 |
2 files changed, 3 insertions, 1 deletions
diff --git a/src/elfs/elfloader.c b/src/elfs/elfloader.c index cf00843e..2f8add77 100644 --- a/src/elfs/elfloader.c +++ b/src/elfs/elfloader.c @@ -21,12 +21,13 @@ #include "elfload_dump.h" #include "elfloader_private.h" #include "librarian.h" -#include "x64run.h" #include "bridge.h" #include "wrapper.h" #include "box64context.h" #include "library.h" #include "x64emu.h" +#include "box64cpu.h" +#include "box64cpu_util.h" #include "box64stack.h" #include "callback.h" #include "box64stack.h" diff --git a/src/elfs/elfloader32.c b/src/elfs/elfloader32.c index 4352cfd0..42478d8e 100644 --- a/src/elfs/elfloader32.c +++ b/src/elfs/elfloader32.c @@ -29,6 +29,7 @@ #include "box64stack.h" #include "callback.h" #include "box64stack.h" +#include "box64cpu_util.h" #include "wine_tools.h" #include "dictionnary.h" #include "symbols.h" |