diff options
author | Roland Reichwein <mail@reichwein.it> | 2020-10-17 21:45:37 +0200 |
---|---|---|
committer | Roland Reichwein <mail@reichwein.it> | 2020-10-17 21:45:37 +0200 |
commit | 8f28495ab9a8ebf53868405541e907394895e51f (patch) | |
tree | 51b27870ed64522e1d54e4f031276e18fe181ee8 /asm/intel64/codes.h | |
parent | 72ff79d76c7ec16ea1b95c72af0838f0e1150735 (diff) |
Add add
Diffstat (limited to 'asm/intel64/codes.h')
-rw-r--r-- | asm/intel64/codes.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/asm/intel64/codes.h b/asm/intel64/codes.h new file mode 100644 index 0000000..32eff1c --- /dev/null +++ b/asm/intel64/codes.h @@ -0,0 +1,8 @@ +#pragma once + +#include <cstdint> +#include <string> +#include <vector> + +// REX prefix: 0b0100WRXB +std::vector<uint8_t> REX(std::string s); |