Function word_bcst

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

Creates a broadcast memory operand with a WORD BCST size hint

ยงExamples

use iced_x86::code_asm::*;

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