diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2023-06-18 10:52:28 +0200 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2023-06-18 10:52:28 +0200 |
| commit | 59dd97cb72b1a4142ddd61eea36170de4ffff926 (patch) | |
| tree | abf8bfef31819995ce5631bd5d3d869fa1fb79b4 /src/include/x64emu.h | |
| parent | a0a98419f072f22479360670a35080ee9113d24f (diff) | |
| download | box64-59dd97cb72b1a4142ddd61eea36170de4ffff926.tar.gz box64-59dd97cb72b1a4142ddd61eea36170de4ffff926.zip | |
Added some support for 32bits code (doesn't seems enough for wow64 yet)
Diffstat (limited to 'src/include/x64emu.h')
| -rwxr-xr-x | src/include/x64emu.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/x64emu.h b/src/include/x64emu.h index dd324add..e9ad201c 100755 --- a/src/include/x64emu.h +++ b/src/include/x64emu.h @@ -49,7 +49,7 @@ void AddCleanup(x64emu_t *emu, void *p, void* dso_handle); void AddCleanup1Arg(x64emu_t *emu, void *p, void* a, void* dso_handle); void CallCleanup(x64emu_t *emu, void* p); void CallAllCleanup(x64emu_t *emu); -void UnimpOpcode(x64emu_t* emu); +void UnimpOpcode(x64emu_t* emu, int is32bits); uint64_t ReadTSC(x64emu_t* emu); |