Skip to main content

MsubEmitter

Trait MsubEmitter 

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

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

Required Methods§

Source

fn msub(&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§