assembler: Some r15 fixes
[b43-tools.git] / assembler / args.h
1 #ifndef BCM43xx_ASM_ARGS_H_
2 #define BCM43xx_ASM_ARGS_H_
3
4 #include "util.h"
5
6
7 int parse_args(int argc, char **argv);
8 int open_input_file(void);
9 void close_input_file(void);
10
11 extern int _debug;
12 extern bool arg_print_sizes;
13 extern const char *initvals_fn_extension;
14
15 #define IS_DEBUG                (_debug > 0)
16 #define IS_VERBOSE_DEBUG        (_debug > 1)
17 #define IS_INSANE_DEBUG         (_debug > 2)
18
19 #endif /* BCM43xx_ASM_ARGS_H_ */