pub trait FlwEmitter<T0, T1, T2> {
// Required method
fn flw(&mut self, rd: T0, rs1: T1, imm: T2);
}Expand description
Single-precision floating-point load
The flw instruction loads a single-precision floating-point value from memory at address rs1 + imm into floating-point register fd.
flw does not modify the bits being transferred; in particular, the payloads of non-canonical NaNs are preserved.
§Forms
Assembly: flw fd, xs1, imm
Rust: flw(rd, rs1, imm)
§Arguments
rd— Destination register.rs1— Memory base register.imm— Immediate encoding value.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".