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

Creates a broadcast memory operand with no size hint

Examples

use iced_x86::code_asm::*;

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