diff options
| author | auth12 <[email protected]> | 2020-07-21 13:07:42 -0700 |
|---|---|---|
| committer | auth12 <[email protected]> | 2020-07-21 13:07:42 -0700 |
| commit | f09669dd5846d95b063712571ccb7519910a0d6e (patch) | |
| tree | 902f5ad201651f2d96ccf619e90b76cfa06a7b9b /client/src/shellcode/shellcode.cpp | |
| parent | Syscalls. (diff) | |
| download | loader-f09669dd5846d95b063712571ccb7519910a0d6e.tar.xz loader-f09669dd5846d95b063712571ccb7519910a0d6e.zip | |
Added game selection.
Started process wrapper.
Removed asmjit.
Diffstat (limited to 'client/src/shellcode/shellcode.cpp')
| -rw-r--r-- | client/src/shellcode/shellcode.cpp | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/client/src/shellcode/shellcode.cpp b/client/src/shellcode/shellcode.cpp deleted file mode 100644 index 67cbabf..0000000 --- a/client/src/shellcode/shellcode.cpp +++ /dev/null @@ -1,31 +0,0 @@ -#include "../include.h" -#include "shellcode.h" - -void sc::generator::start() {} - -void sc::generator::push(const std::vector<uintptr_t>& args) { - if (!m_x64) { - for (auto it = args.rbegin(); it != args.rend(); ++it) { - m_assembler.push(*it); - } - return; - } - - // 64bit impl -} - -void sc::generator::call(const uintptr_t addr) {} - -void sc::generator::end() { - if (m_x64) { - } - - void* func; - m_runtime.add(&func, &m_code); - - const size_t size = m_code.codeSize(); - - m_buf.resize(size); - - std::memcpy(&m_buf[0], func, size); -}
\ No newline at end of file |