aboutsummaryrefslogtreecommitdiffstats
path: root/sw/types.h
blob: ba560509a8cb882efbb0182e07fb3aca62d78b8d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* Usage:
 *
 * #include <stdint.h>
 * #include "types.h"
 */

typedef uint8_t U8;

typedef struct {
	U8 lo, hi;
} U16;

void incU16(U16 *x);