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

Creates a broadcast memory operand with a DWORD BCST size hint

Examples

use iced_x86::code_asm::*;

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