This commit is contained in:
MITSUNARI Shigeo 2021-06-17 15:56:39 +09:00
parent 413a66b44d
commit 2fb843c328
2 changed files with 2 additions and 2 deletions

View file

@ -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

View file

@ -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); }