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