Skip to main content

MaddEmitter

Trait MaddEmitter 

Source
pub trait MaddEmitter<T0, T1, T2, T3> {
    // Required method
    fn madd(&mut self, rd: T0, rn: T1, rm: T2, operand_4: T3);
}
Expand description

Emits the MADD instruction. Assembly forms: MADD WD, WN, WM, WA; MADD XD, XN, XM, XA. Operands: rd, rn, rm, operand_4.

Required Methods§

Source

fn madd(&mut self, rd: T0, rn: T1, rm: T2, operand_4: T3)

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§