From f09669dd5846d95b063712571ccb7519910a0d6e Mon Sep 17 00:00:00 2001 From: auth12 <67507608+auth12@users.noreply.github.com> Date: Tue, 21 Jul 2020 13:07:42 -0700 Subject: Added game selection. Started process wrapper. Removed asmjit. --- client/src/shellcode/shellcode.cpp | 31 ------------------------------- 1 file changed, 31 deletions(-) delete mode 100644 client/src/shellcode/shellcode.cpp (limited to 'client/src/shellcode/shellcode.cpp') 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& 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 -- cgit v1.2.3