diff options
| author | Yang Liu <liuyang22@iscas.ac.cn> | 2025-04-01 18:36:12 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-04-01 12:36:12 +0200 |
| commit | 670876112e3ab4a36205223a6f0c4290a527c4a9 (patch) | |
| tree | 7d13933149ff9b438ae1002621ec7db31676c4ee /src/include/dynarec.h | |
| parent | 495d3cc4c0ec521e932677ac3d2fcad2c3d80eca (diff) | |
| download | box64-670876112e3ab4a36205223a6f0c4290a527c4a9.tar.gz box64-670876112e3ab4a36205223a6f0c4290a527c4a9.zip | |
Some cosmetic changes to C header files (#2487)
* [DYNAREC] Move cosim functions to a new header * Moved isNativeCall to elfloader
Diffstat (limited to 'src/include/dynarec.h')
| -rw-r--r-- | src/include/dynarec.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/include/dynarec.h b/src/include/dynarec.h index baebd72d..39360841 100644 --- a/src/include/dynarec.h +++ b/src/include/dynarec.h @@ -5,7 +5,4 @@ typedef struct x64emu_s x64emu_t; void DynaCall(x64emu_t* emu, uintptr_t addr); // try to use DynaRec... Fallback to EmuCall if no dynarec available -void x64test_step(x64emu_t* ref, uintptr_t ip); -void x64test_check(x64emu_t* ref, uintptr_t ip); - -#endif // __DYNAREC_H_ \ No newline at end of file +#endif // __DYNAREC_H_ |