b43-asm: Add an option to print the code sizes after assembling.
[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
14 #define IS_DEBUG                (_debug > 0)
15 #define IS_VERBOSE_DEBUG        (_debug > 1)
16 #define IS_INSANE_DEBUG         (_debug > 2)
17
18 #endif /* BCM43xx_ASM_ARGS_H_ */