diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2025-08-27 16:17:17 +0200 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2025-08-27 16:17:17 +0200 |
| commit | 3fe020572dfc0636ab82bae962c3514134e9e128 (patch) | |
| tree | ee2fe2191bab2db8f04404debe951d0040e55430 /src/include | |
| parent | 234f6f2b14231679832a9c64469df2a5c8cefa73 (diff) | |
| download | box64-3fe020572dfc0636ab82bae962c3514134e9e128.tar.gz box64-3fe020572dfc0636ab82bae962c3514134e9e128.zip | |
Improved handling of TF flag
Diffstat (limited to 'src/include')
| -rw-r--r-- | src/include/box64cpu.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/box64cpu.h b/src/include/box64cpu.h index 72df2c69..b565e06f 100644 --- a/src/include/box64cpu.h +++ b/src/include/box64cpu.h @@ -3,7 +3,7 @@ typedef struct x64emu_s x64emu_t; -int Run(x64emu_t *emu, int step); +int Run(x64emu_t *emu, int step, int need_tf); void EmuCall(x64emu_t* emu, uintptr_t addr); void StopEmu(x64emu_t* emu, const char* reason, int is32bits); void DynaRun(x64emu_t *emu); |