Skip to main content

machina_softfloat/ops/
mod.rs

1// SPDX-License-Identifier: MIT
2// Floating-point operation modules.
3
4pub mod add;
5pub mod compare;
6pub mod convert;
7pub mod div;
8pub mod fma;
9pub mod minmax;
10pub mod misc;
11pub mod mul;
12pub mod round;
13pub mod sqrt;