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/assembler/opcodes.h | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 client/src/assembler/opcodes.h (limited to 'client/src/assembler/opcodes.h') diff --git a/client/src/assembler/opcodes.h b/client/src/assembler/opcodes.h new file mode 100644 index 0000000..cc21ef0 --- /dev/null +++ b/client/src/assembler/opcodes.h @@ -0,0 +1,9 @@ +#pragma once + + +namespace assembler { + enum opcodes : uint8_t { + nop = 0x90, + ret = 0xc3S + }; +}; \ No newline at end of file -- cgit v1.2.3