mirror of
https://github.com/herumi/xbyak
synced 2024-11-20 16:06:14 -07:00
v5.994
This commit is contained in:
parent
413a66b44d
commit
2fb843c328
2 changed files with 2 additions and 2 deletions
|
@ -138,7 +138,7 @@ namespace Xbyak {
|
|||
|
||||
enum {
|
||||
DEFAULT_MAX_CODE_SIZE = 4096,
|
||||
VERSION = 0x5993 /* 0xABCD = A.BC(D) */
|
||||
VERSION = 0x5994 /* 0xABCD = A.BC(D) */
|
||||
};
|
||||
|
||||
#ifndef MIE_INTEGER_TYPE_DEFINED
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
const char *getVersionString() const { return "5.993"; }
|
||||
const char *getVersionString() const { return "5.994"; }
|
||||
void adc(const Operand& op, uint32_t imm) { opRM_I(op, imm, 0x10, 2); }
|
||||
void adc(const Operand& op1, const Operand& op2) { opRM_RM(op1, op2, 0x10); }
|
||||
void adcx(const Reg32e& reg, const Operand& op) { opGen(reg, op, 0xF6, 0x66, isREG32_REG32orMEM, NONE, 0x38); }
|
||||
|
|
Loading…
Reference in a new issue