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

Creates a memory operand with a YMMWORD PTR size hint

Examples

use iced_x86::code_asm::*;

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