logo
pub fn qword_ptr<M: Into<AsmMemoryOperand>>(mem: M) -> AsmMemoryOperand
Expand description

Creates a memory operand with a QWORD PTR size hint

Examples

use iced_x86::code_asm::*;

let _ = qword_ptr(rax);
let _ = qword_ptr(0x1234_5678).fs();
let _ = qword_ptr(rdx * 4 + rcx - 123);