Skip to main content

FmsubEmitter

Trait FmsubEmitter 

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

Emits the FMSUB instruction. Assembly forms: FMSUB SD, SN, SM, SA; FMSUB DD, DN, DM, DA; FMSUB HD, HN, HM, HA. Operands: rd, rn, rm, operand_4.

Required Methods§

Source

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