diff options
Diffstat (limited to 'client/src/main.cpp')
| -rw-r--r-- | client/src/main.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
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)}; |