about summary refs log tree commit diff stats
path: root/src/include
diff options
context:
space:
mode:
authorptitSeb <sebastien.chev@gmail.com>2025-08-27 16:17:17 +0200
committerptitSeb <sebastien.chev@gmail.com>2025-08-27 16:17:17 +0200
commit3fe020572dfc0636ab82bae962c3514134e9e128 (patch)
treeee2fe2191bab2db8f04404debe951d0040e55430 /src/include
parent234f6f2b14231679832a9c64469df2a5c8cefa73 (diff)
downloadbox64-3fe020572dfc0636ab82bae962c3514134e9e128.tar.gz
box64-3fe020572dfc0636ab82bae962c3514134e9e128.zip
Improved handling of TF flag
Diffstat (limited to 'src/include')
-rw-r--r--src/include/box64cpu.h2
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);