fxos/include/fxos/util/types.h

27 lines
858 B
C++

//---------------------------------------------------------------------------//
// 1100101 |_ mov #0, r4 __ //
// 11 |_ <0xb380 %5c4> / _|_ _____ ___ //
// 0110 |_ 3.50 -> 3.60 | _\ \ / _ (_-< //
// |_ base# + offset |_| /_\_\___/__/ //
//---------------------------------------------------------------------------//
// fxos/util/types: Common type definitions
#ifndef FXOS_UTIL_TYPES_H
#define FXOS_UTIL_TYPES_H
#include <cstdint>
typedef unsigned int uint;
/* Fixed-width integer types */
typedef uint8_t u8;
typedef uint16_t u16;
typedef uint32_t u32;
typedef uint64_t u64;
typedef int8_t i8;
typedef int16_t i16;
typedef int32_t i32;
typedef int64_t i64;
#endif /* FXOS_UTIL_TYPES_H */