temporary undoing of renaming
[riscv-isa-sim.git] / softfloat_riscv / softfloat_types.h
1
2 #ifndef softfloat_types_h
3 #define softfloat_types_h
4
5 /*** COMMENTS. ***/
6
7 #include <stdbool.h>
8 #include <stdint.h>
9
10 typedef uint32_t float32_t;
11 typedef uint64_t float64_t;
12 typedef struct { uint64_t v; uint16_t x; } floatx80_t;
13 typedef struct { uint64_t v[ 2 ]; } float128_t;
14
15 #endif
16