blob: 22a651ecbb0ff1cf5785338a807e70dd1d0d283c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/* Device: PIC16F1459
* Compiler: XC8 v3.00
*
* Usage:
*
* #include <stdint.h>
* #include "types.h"
*/
typedef uint8_t U8;
typedef struct {
U8 lo, hi;
} U16;
void incU16(U16 *x);
|