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