diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2021-03-29 17:25:35 +0200 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2021-03-29 17:25:35 +0200 |
| commit | ba198371043f99bc96c7a5c318bbff5efa647d22 (patch) | |
| tree | 830f9e6f7a6a977159fe73293870b8f9c05f0e90 | |
| parent | 509a1bf56e08d2755b57a6f8fa4c4237169abeaf (diff) | |
| download | box64-ba198371043f99bc96c7a5c318bbff5efa647d22.tar.gz box64-ba198371043f99bc96c7a5c318bbff5efa647d22.zip | |
Cosmetic change for F0 0F B1 opcode
| -rw-r--r-- | src/emu/x64runf0.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/emu/x64runf0.c b/src/emu/x64runf0.c index 095e6033..04338d61 100644 --- a/src/emu/x64runf0.c +++ b/src/emu/x64runf0.c @@ -194,7 +194,8 @@ int RunF0(x64emu_t *emu, rex_t rex) } pthread_mutex_unlock(&emu->context->mutex_lock); #endif - break; case 0xB1: /* CMPXCHG Ed,Gd */ + break; + case 0xB1: /* CMPXCHG Ed,Gd */ nextop = F8; GETED(0); GETGD; |