b5c1828558548678ebb597ed0929bf29f472541a
[riscv-isa-sim.git] / softfloat / 8086 / 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 struct { uint32_t v; } float32_t;
11 typedef struct { uint64_t v; } 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