squid 2.0.3

A RISC-V emulator with AOT compilation for fuzzing
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! 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;