X-Git-Url: https://jxself.org/git/?a=blobdiff_plain;f=assembler%2Fargs.h;h=a2c86d160f27efcf21a259d67fee428057946b56;hb=e21b92e66ad6c143da489331d4d56abfa2092160;hp=8bebeac4784811750c27555d3bf31c23b5261d64;hpb=b9e19faa25ad9e1b24f08dc77267760df1b98504;p=b43-tools.git diff --git a/assembler/args.h b/assembler/args.h index 8bebeac..a2c86d1 100644 --- a/assembler/args.h +++ b/assembler/args.h @@ -1,14 +1,31 @@ #ifndef BCM43xx_ASM_ARGS_H_ #define BCM43xx_ASM_ARGS_H_ +#include "util.h" + + +enum fwformat { + FMT_RAW_LE32, /* Raw microcode. No headers. 32bit little endian chunks. */ + FMT_RAW_BE32, /* Raw microcode. No headers. 32bit big endian chunks. */ + FMT_B43, /* b43/b43legacy headers. */ +}; + +struct cmdline_args { + int debug; /* Debug level. */ + bool print_sizes; /* Print sizes after assembling. */ + const char *initvals_fn_extension; /* Initvals filename extension. */ + const char *real_infile_name; /* The real input file name. */ + enum fwformat outformat; /* The output file format. */ +}; + int parse_args(int argc, char **argv); int open_input_file(void); void close_input_file(void); -extern int _debug; +extern struct cmdline_args cmdargs; -#define IS_DEBUG (_debug > 0) -#define IS_VERBOSE_DEBUG (_debug > 1) -#define IS_INSANE_DEBUG (_debug > 2) +#define IS_DEBUG (cmdargs.debug > 0) +#define IS_VERBOSE_DEBUG (cmdargs.debug > 1) +#define IS_INSANE_DEBUG (cmdargs.debug > 2) #endif /* BCM43xx_ASM_ARGS_H_ */