libdragon
Loading...
Searching...
No Matches
n64types.h
Go to the documentation of this file.
1
8#ifndef __LIBDRAGON_N64TYPES_H
9#define __LIBDRAGON_N64TYPES_H
10
11#include <stdint.h>
12#include <stdalign.h>
13
14#ifdef __cplusplus
15extern "C" {
16#endif
17
25typedef uint64_t u_uint64_t __attribute__((aligned(1)));
26
34typedef uint32_t u_uint32_t __attribute__((aligned(1)));
35
43typedef uint16_t u_uint16_t __attribute__((aligned(1)));
44
45#ifdef __cplusplus
46}
47#endif
48
49#endif
uint32_t u_uint32_t
Unaligned uint32_t.
Definition dlfcn_internal.h:25
uint64_t u_uint64_t
Unaligned 64-bit integer type.
Definition n64types.h:25
uint16_t u_uint16_t
Unaligned 16-bit integer type.
Definition n64types.h:43