diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2021-03-02 11:49:09 +0100 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2021-03-02 11:49:09 +0100 |
| commit | 9ae5d6121295599bff75012b44adebabd0908ead (patch) | |
| tree | 7331fb2b623813e6ef29726382520ff7cd5921c3 /src/main.c | |
| parent | 997b5c6b50b9263b06fb0a21dd6c2e727ce3e4a1 (diff) | |
| download | box64-9ae5d6121295599bff75012b44adebabd0908ead.tar.gz box64-9ae5d6121295599bff75012b44adebabd0908ead.zip | |
Initializing x64emu structure
Diffstat (limited to 'src/main.c')
| -rwxr-xr-x | src/main.c | 2 |
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; |