aboutsummaryrefslogtreecommitdiff
path: root/softfloat/8086/softfloat_types.h
blob: b5c1828558548678ebb597ed0929bf29f472541a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16

#ifndef softfloat_types_h
#define softfloat_types_h

/*** COMMENTS. ***/

#include <stdbool.h>
#include <stdint.h>

typedef struct { uint32_t v; } float32_t;
typedef struct { uint64_t v; } float64_t;
typedef struct { uint64_t v; uint16_t x; } floatx80_t;
typedef struct { uint64_t v[ 2 ]; } float128_t;

#endif