about summary refs log tree commit diff stats
path: root/src
diff options
context:
space:
mode:
authorptitSeb <sebastien.chev@gmail.com>2024-09-30 17:40:40 +0200
committerptitSeb <sebastien.chev@gmail.com>2024-09-30 17:40:40 +0200
commit62405c79c37b21c7cd8237e4525354e0e45189ba (patch)
treea7c51f5662e303a0c99691905752444c15077454 /src
parent28dedd66b3fa3bc5e9b4669f3f627888fc9ad195 (diff)
downloadbox64-62405c79c37b21c7cd8237e4525354e0e45189ba.tar.gz
box64-62405c79c37b21c7cd8237e4525354e0e45189ba.zip
[DYNAREC] Start with dynarec instead of interpreter
Diffstat (limited to 'src')
-rw-r--r--src/core.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core.c b/src/core.c
index 7007f63c..c7c7bf2d 100644
--- a/src/core.c
+++ b/src/core.c
@@ -2445,7 +2445,7 @@ int emulate(x64emu_t* emu, elfheader_t* elf_header)
         Push64(emu, my_context->exit_bridge);  // push to pop it just after
         SetRDX(emu, Pop64(emu));    // RDX is exit function
     }
-    Run(emu, 0);
+    DynaRun(emu);
     // Get EAX
     int ret = GetEAX(emu);
     printf_log(LOG_DEBUG, "Emulation finished, EAX=%d\n", ret);