From 40025e07ca06f48d21b583adc9f78b7b10d90995 Mon Sep 17 00:00:00 2001 From: auth Date: Fri, 3 Jul 2020 14:30:26 +0200 Subject: Started asmjit wrapper for easier manipulation. --- client/src/main.cpp | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'client/src/main.cpp') diff --git a/client/src/main.cpp b/client/src/main.cpp index 61b97d5..f68ef6a 100644 --- a/client/src/main.cpp +++ b/client/src/main.cpp @@ -1,10 +1,20 @@ #include "include.h" #include "util/io.h" #include "client/client.h" +#include "assembler/assembler.h" int main(int argc, char* argv[]) { io::init(); + assembler::assembler a; + a.push({1, 2, 3, 7, 9}); + a.end(); + for(auto &b : a()) { + io::logger->info("{:x}", int(b)); + } + + + std::cin.get(); tcp::client client; std::thread t{tcp::client::monitor, std::ref(client)}; -- cgit v1.2.3