diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2021-03-02 11:45:50 +0100 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2021-03-02 11:45:50 +0100 |
| commit | 997b5c6b50b9263b06fb0a21dd6c2e727ce3e4a1 (patch) | |
| tree | bc488d342c0dc3827448de0c72b761d8e16727f5 /src/main.c | |
| parent | be92787329b59cf0f2202ca7623055372df0d90f (diff) | |
| download | box64-997b5c6b50b9263b06fb0a21dd6c2e727ce3e4a1.tar.gz box64-997b5c6b50b9263b06fb0a21dd6c2e727ce3e4a1.zip | |
Added some x86_64 regs and emu infrastructure
Diffstat (limited to 'src/main.c')
| -rwxr-xr-x | src/main.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/main.c b/src/main.c index d9052a58..f64996cf 100755 --- a/src/main.c +++ b/src/main.c @@ -817,6 +817,9 @@ int main(int argc, const char **argv, const char **env) { FreeCollection(&ld_preload); return -1; } + // init x86_64 emu + //x64emu_t *emu = NewX64Emu(my_context, my_context->ep, (uintptr_t)my_context->stack, my_context->stacksz, 0); + return 0; } |