about summary refs log tree commit diff stats
path: root/src
diff options
context:
space:
mode:
authorptitSeb <sebastien.chev@gmail.com>2021-05-17 20:40:53 +0200
committerptitSeb <sebastien.chev@gmail.com>2021-05-17 20:40:53 +0200
commit39282223955c8c9300d21f3429903ffa721d0672 (patch)
treeea15be0d75871510aa1277049e3fd7db637a656c /src
parent414d33a46cb1c240b72c0cd9c9bb11485e8c9c35 (diff)
downloadbox64-39282223955c8c9300d21f3429903ffa721d0672.tar.gz
box64-39282223955c8c9300d21f3429903ffa721d0672.zip
Small fixed to 0F 50 opcode
Diffstat (limited to 'src')
-rw-r--r--src/emu/x64run0f.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/x64run0f.c b/src/emu/x64run0f.c
index 6f8c065b..0c7d53ba 100644
--- a/src/emu/x64run0f.c
+++ b/src/emu/x64run0f.c
@@ -292,7 +292,7 @@ int Run0F(x64emu_t *emu, rex_t rex)
             nextop = F8;

             GETEX(0);

             GETGD;

-            GD->dword[0] = 0;

+            GD->q[0] = 0;

             for(int i=0; i<4; ++i)

                 GD->dword[0] |= ((EX->ud[i]>>31)&1)<<i;

             break;