summaryrefslogtreecommitdiff
path: root/src/pic14/main.h
blob: 4275b650cdf91fad74bc7d2527256732849c884c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef MAIN_INCLUDE
#define MAIN_INCLUDE

typedef struct {
  unsigned int isLibrarySource:1;
  int disable_df;
  int no_ext_instr;
  int no_warn_non_free;
} pic14_options_t;

extern pic14_options_t pic14_options;
extern int debug_verbose;

#endif