about summary refs log tree commit diff stats
path: root/src
diff options
context:
space:
mode:
authorptitSeb <sebastien.chev@gmail.com>2021-04-13 18:53:04 +0200
committerGitHub <noreply@github.com>2021-04-13 18:53:04 +0200
commit3c812483357b8ad46c0b26e91c035f3721b9d46f (patch)
tree824a4646be2c766f31e6c220260373238d2316a3 /src
parent3adeabb06d9221b678f3b28726e776acb9332826 (diff)
parent1e3f277a7187e69c03d7a1ae5b9923c78c965cd0 (diff)
downloadbox64-3c812483357b8ad46c0b26e91c035f3721b9d46f.tar.gz
box64-3c812483357b8ad46c0b26e91c035f3721b9d46f.zip
Merge pull request #9 from ptitSeb/krishenriksen-patch-3
Update x64runf30f.c
Diffstat (limited to 'src')
-rw-r--r--src/emu/x64runf30f.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/emu/x64runf30f.c b/src/emu/x64runf30f.c
index aa3c9d76..d599136f 100644
--- a/src/emu/x64runf30f.c
+++ b/src/emu/x64runf30f.c
@@ -309,8 +309,13 @@ int RunF30F(x64emu_t *emu, rex_t rex)
         GX->d[0] = EX->sd[0];

         break;

 

+    case 0x1E:  /* NOP (multi-byte), endbr64 */

+		nextop = F8;

+		GETED(0);

+        break;            

+            

     default:

         return 1;

     }

     return 0;

-}
\ No newline at end of file
+}