diff options
| author | auth <[email protected]> | 2020-07-03 14:30:26 +0200 |
|---|---|---|
| committer | auth <[email protected]> | 2020-07-03 14:30:26 +0200 |
| commit | 40025e07ca06f48d21b583adc9f78b7b10d90995 (patch) | |
| tree | 08cc6c5fff5953e0f61b851615d4ebdf93dc7733 /client/src/assembler/opcodes.h | |
| parent | Added client timeout. (diff) | |
| download | loader-40025e07ca06f48d21b583adc9f78b7b10d90995.tar.xz loader-40025e07ca06f48d21b583adc9f78b7b10d90995.zip | |
Started asmjit wrapper for easier manipulation.
Diffstat (limited to 'client/src/assembler/opcodes.h')
| -rw-r--r-- | client/src/assembler/opcodes.h | 9 |
1 files changed, 9 insertions, 0 deletions
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 |