aboutsummaryrefslogtreecommitdiffstats
path: root/fw/system.h
blob: acd59df0b7940934f886e30b00e497d991540f79 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef SYSTEM_H
#define SYSTEM_H

#include "fixed_address_memory.h"

// TRIS
enum {
	OUT = 0,
	IN = 1,
};

void sysInit(void);

#endif // SYSTEM_H