File: softfloat-uae.h

package info (click to toggle)
fs-uae 3.0.5%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 86,408 kB
  • sloc: cpp: 264,626; python: 139,849; ansic: 110,926; sh: 4,686; makefile: 2,317; asm: 275; xml: 10
file content (19 lines) | stat: -rw-r--r-- 361 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif

#include <stdint.h>

typedef int8_t Bit8s;
typedef int16_t Bit16s;
typedef int32_t Bit32s;
typedef int64_t Bit64s;

typedef uint8_t Bit8u;
typedef uint16_t Bit16u;
typedef uint32_t Bit32u;
typedef uint64_t Bit64u;

#define BX_BIG_ENDIAN WORDS_BIGENDIAN
#define BX_CONST64(x) (x##LL)
#define BX_CPP_INLINE inline