//! The flags that can be set in the `fflags` CSR.
/// Inexact
pub const NX: u32 = 1 << 0;
/// Underflow
pub const UF: u32 = 1 << 1;
/// Overflow
pub const OF: u32 = 1 << 2;
/// Divide by zero
pub const DZ: u32 = 1 << 3;
/// Invalid operation
pub const NV: u32 = 1 << 4;