Function oword_ptr

Source
pub fn oword_ptr<M: Into<AsmMemoryOperand>>(mem: M) -> AsmMemoryOperand
Expand description

Creates a memory operand with an OWORD PTR size hint

ยงExamples

use iced_x86::code_asm::*;

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