Function byte_ptr

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

Creates a memory operand with a BYTE PTR size hint

ยงExamples

use iced_x86::code_asm::*;

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