diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2025-06-28 18:12:48 +0200 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2025-06-28 18:12:48 +0200 |
| commit | c6eaae8760ce3df059a62224ada9298488d773a6 (patch) | |
| tree | a85812c08945b21fdc33a0bdfbde899d1404fe56 /src | |
| parent | 4a447e7f9413de9619ca6232fb35d3c6b1023b39 (diff) | |
| download | box64-c6eaae8760ce3df059a62224ada9298488d773a6.tar.gz box64-c6eaae8760ce3df059a62224ada9298488d773a6.zip | |
[INTERP] Small imrpvoment for 0F 03 opcode
Diffstat (limited to 'src')
| -rw-r--r-- | src/emu/x64run0f.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/x64run0f.c b/src/emu/x64run0f.c index d1d2cd52..4af95885 100644 --- a/src/emu/x64run0f.c +++ b/src/emu/x64run0f.c @@ -166,7 +166,7 @@ uintptr_t Run0F(x64emu_t *emu, rex_t rex, uintptr_t addr, int *step) nextop = F8; GETED(0); GETGD; - UpdateFlags(emu); + CHECK_FLAGS(emu); tmp8u = ED->word[0]>>3; if (tmp8u>0x10 || !my_context->segtls[tmp8u].present) { CLEAR_FLAG(F_ZF); |