File: softfloat-uae.h

package info (click to toggle)
fs-uae 2.8.0%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 81,884 kB
  • ctags: 120,691
  • sloc: cpp: 263,056; ansic: 145,084; python: 122,073; sh: 8,989; makefile: 2,098; 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