about summary refs log tree commit diff stats
path: root/src/emu
diff options
context:
space:
mode:
authorptitSeb <sebastien.chev@gmail.com>2021-04-01 15:37:08 +0200
committerptitSeb <sebastien.chev@gmail.com>2021-04-01 15:37:08 +0200
commit9abfdb3431f36c83dd57aee9ba13d4ae0a84eeca (patch)
tree460280d8d4b1f4c7cffa51b50b59632c1d8c4878 /src/emu
parente942a8433bf2c13501d9ada0ff9f77ed4a21142d (diff)
downloadbox64-9abfdb3431f36c83dd57aee9ba13d4ae0a84eeca.tar.gz
box64-9abfdb3431f36c83dd57aee9ba13d4ae0a84eeca.zip
Small change to 67 C1 opcode
Diffstat (limited to 'src/emu')
-rw-r--r--src/emu/x64run67.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/x64run67.c b/src/emu/x64run67.c
index 568bc659..7db5494f 100644
--- a/src/emu/x64run67.c
+++ b/src/emu/x64run67.c
@@ -55,7 +55,7 @@ int Run67(x64emu_t *emu, rex_t rex)
 

     case 0xC1:                      /* GRP2 Ed,Ib */

         nextop = F8;

-        GETED(1);

+        GETED32(1);

         tmp8u = F8/* & 0x1f*/; // masking done in each functions

         if(rex.w) {

             switch((nextop>>3)&7) {