x86_64-asm.h: support callq for better compat
It has the same effect as call. Co-authored-by: Yao Zi <ziyao@disroot.org> Signed-off-by: Yao Zi <ziyao@disroot.org> Signed-off-by: John Nunley <dev@notgull.net>
This commit is contained in:
parent
50cfe1141b
commit
6acf301e77
1 changed files with 2 additions and 0 deletions
|
@ -225,6 +225,8 @@ ALT(DEF_ASM_OP2(shrdw, 0x0fad, 0, OPC_MODRM | OPC_WLX, OPT_REGW, OPT_EA | OPT_RE
|
||||||
|
|
||||||
ALT(DEF_ASM_OP1(call, 0xff, 2, OPC_MODRM, OPT_INDIR))
|
ALT(DEF_ASM_OP1(call, 0xff, 2, OPC_MODRM, OPT_INDIR))
|
||||||
ALT(DEF_ASM_OP1(call, 0xe8, 0, 0, OPT_DISP))
|
ALT(DEF_ASM_OP1(call, 0xe8, 0, 0, OPT_DISP))
|
||||||
|
DEF_ASM_OP1(callq, 0xff, 2, OPC_MODRM, OPT_INDIR)
|
||||||
|
ALT(DEF_ASM_OP1(callq, 0xe8, 0, 0, OPT_DISP))
|
||||||
ALT(DEF_ASM_OP1(jmp, 0xff, 4, OPC_MODRM, OPT_INDIR))
|
ALT(DEF_ASM_OP1(jmp, 0xff, 4, OPC_MODRM, OPT_INDIR))
|
||||||
ALT(DEF_ASM_OP1(jmp, 0xeb, 0, 0, OPT_DISP8))
|
ALT(DEF_ASM_OP1(jmp, 0xeb, 0, 0, OPT_DISP8))
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue