* device/lib/Makefile.in: removed comment line with model-pic16,
[fw/sdcc] / src / pic16 / main.h
1 #ifndef MAIN_INCLUDE
2 #define MAIN_INCLUDE
3
4 bool x_parseOptions (char **argv, int *pargc);
5 void x_setDefaultOptions (void);
6 void x_finaliseOptions (void);
7
8
9 typedef struct {
10         char *at_udata;
11 } pic16_sectioninfo_t;
12
13 typedef struct absSym {
14         char *name;
15         unsigned int address;
16 } absSym;
17
18
19 extern set *absSymSet;
20
21
22 #endif