disassembler: Add option to decode operands of unknown instructions
[b43-tools.git] / disassembler / args.h
index 0cb372cc0cb54c7ac94f75a4bcbb3cb1638a529c..67f1e4539e93a7abb1248d2faf783f50d906326a 100644 (file)
@@ -8,9 +8,10 @@ enum fwformat {
 };
 
 struct cmdline_args {
-       unsigned int arch;
-       enum fwformat informat;
-       int print_addresses;
+       unsigned int arch;              /* The architecture we're disassembling. */
+       enum fwformat informat;         /* The input file format. */
+       int print_addresses;            /* Print a comment with instruction address. */
+       int unknown_decode;             /* Decode operands of unknown instructions. */
 };
 
 int parse_args(int argc, char **argv);