aboutsummaryrefslogtreecommitdiffstats
path: root/fw/types.c
blob: a6c241163a99bc57de39b2bdc3ef91100c49c25c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <xc.h>

#include <stdint.h>

#include "types.h"

void
addU16(U16 *a, U8 b) {
	a->lo += b;
	if (STATUSbits.C) {
		a->hi++;
	}
}