about summary refs log tree commit diff stats
path: root/src/emu
diff options
context:
space:
mode:
authorptitSeb <sebastien.chev@gmail.com>2024-04-17 17:14:19 +0200
committerptitSeb <sebastien.chev@gmail.com>2024-04-17 17:14:19 +0200
commit5120e74b365b4797e2decb9147dcd7a121faf647 (patch)
tree588412d73415faa6c0bb777afa04b85043e84fea /src/emu
parent8f5fa863bfc2ee7e51be39e86a856019eebb0589 (diff)
downloadbox64-5120e74b365b4797e2decb9147dcd7a121faf647.tar.gz
box64-5120e74b365b4797e2decb9147dcd7a121faf647.zip
Added 66 68 opcode ([ARM64_DYNAREC] too)
Diffstat (limited to 'src/emu')
-rw-r--r--src/emu/x64run66.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/emu/x64run66.c b/src/emu/x64run66.c
index 61416cff..b9f8e924 100644
--- a/src/emu/x64run66.c
+++ b/src/emu/x64run66.c
@@ -275,6 +275,10 @@ uintptr_t Run66(x64emu_t *emu, rex_t rex, int rep, uintptr_t addr)
         return Run6664(emu, rex, _GS, addr);

         #endif

 

+    case 0x68:                       /* PUSH u16 */

+        tmp16u = F16;

+        Push16(emu, tmp16u);

+        break;

     case 0x69:                      /* IMUL Gw,Ew,Iw */

         nextop = F8;

         GETEW(rex.w?4:2);