diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2023-02-20 21:30:22 +0100 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2023-02-20 21:30:22 +0100 |
| commit | bfef8c9bbe8a16373742cb9c9e5691b93e994f58 (patch) | |
| tree | 246b21e67025f3159006efd04f78fc6e4ec696bf /src/include | |
| parent | 42b83789880c300711f08e3852784e17cafaf7ac (diff) | |
| parent | 3fe2843bb3b95d8edd63d21c4f6acad7f652be91 (diff) | |
| download | box64-bfef8c9bbe8a16373742cb9c9e5691b93e994f58.tar.gz box64-bfef8c9bbe8a16373742cb9c9e5691b93e994f58.zip | |
Merge branch 'main' into steam_chrome
Diffstat (limited to 'src/include')
| -rwxr-xr-x | src/include/debug.h | 1 | ||||
| -rwxr-xr-x | src/include/dynarec_native.h | 3 |
2 files changed, 4 insertions, 0 deletions
diff --git a/src/include/debug.h b/src/include/debug.h index 024805a1..f4461243 100755 --- a/src/include/debug.h +++ b/src/include/debug.h @@ -23,6 +23,7 @@ extern int box64_dynarec_safeflags; extern int box64_dynarec_callret; extern int box64_dynarec_bleeding_edge; extern int box64_dynarec_hotpage; +extern int box64_dynarec_fastpage; extern int box64_dynarec_wait; #ifdef ARM64 extern int arm64_asimd; diff --git a/src/include/dynarec_native.h b/src/include/dynarec_native.h index 9fe26323..eff5a6bf 100755 --- a/src/include/dynarec_native.h +++ b/src/include/dynarec_native.h @@ -3,6 +3,9 @@ typedef struct dynablock_s dynablock_t; typedef struct x64emu_s x64emu_t; +typedef struct instsize_s instsize_t; + +void addInst(instsize_t* insts, size_t* size, int x64_size, int native_size); void CancelBlock64(int need_lock); void* FillBlock64(dynablock_t* block, uintptr_t addr); |