pub fn dword_ptr<M: Into<AsmMemoryOperand>>(mem: M) -> AsmMemoryOperand
Expand description
Creates a memory operand with a DWORD PTR
size hint
Examples
use iced_x86::code_asm::*;
let _ = dword_ptr(rax);
let _ = dword_ptr(0x1234_5678).fs();
let _ = dword_ptr(rdx * 4 + rcx - 123);