about summary refs log tree commit diff stats
path: root/src/main.c
diff options
context:
space:
mode:
authorptitSeb <sebastien.chev@gmail.com>2021-03-02 11:49:09 +0100
committerptitSeb <sebastien.chev@gmail.com>2021-03-02 11:49:09 +0100
commit9ae5d6121295599bff75012b44adebabd0908ead (patch)
tree7331fb2b623813e6ef29726382520ff7cd5921c3 /src/main.c
parent997b5c6b50b9263b06fb0a21dd6c2e727ce3e4a1 (diff)
downloadbox64-9ae5d6121295599bff75012b44adebabd0908ead.tar.gz
box64-9ae5d6121295599bff75012b44adebabd0908ead.zip
Initializing x64emu structure
Diffstat (limited to 'src/main.c')
-rwxr-xr-xsrc/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.c b/src/main.c
index f64996cf..32e84a21 100755
--- a/src/main.c
+++ b/src/main.c
@@ -818,7 +818,7 @@ int main(int argc, const char **argv, const char **env) {
         return -1;
     }
     // init x86_64 emu
-    //x64emu_t *emu = NewX64Emu(my_context, my_context->ep, (uintptr_t)my_context->stack, my_context->stacksz, 0);
+    x64emu_t *emu = NewX64Emu(my_context, my_context->ep, (uintptr_t)my_context->stack, my_context->stacksz, 0);
 
 
     return 0;