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