Changeset 21589 for trunk/tools/wrc/wrc.c
- Timestamp:
- Mar 14, 2011, 5:35:17 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tools/wrc/wrc.c
r6113 r21589 82 82 " -L Leave case of embedded filenames as is\n" 83 83 " -m Do not remap numerical resource IDs\n" 84 " -M Use MASM syntax for the generated .s file instead of GAS\n" 84 85 " -n Do not generate .s file\n" 85 86 " -N Do not preprocess input\n" … … 242 243 int remap = 1; 243 244 245 /* 246 * Set when MASM syntax is requested (-M option) 247 */ 248 int masm_mode = 0; 249 244 250 char *output_name; /* The name given by the -o option */ 245 251 char *input_name; /* The name given on the command-line */ … … 294 300 } 295 301 296 while((optc = getopt(argc, argv, "a:AbB:cC:d:D:eEghH:I:l:Lm nNo:p:rstTVw:W")) != EOF)302 while((optc = getopt(argc, argv, "a:AbB:cC:d:D:eEghH:I:l:LmMnNo:p:rstTVw:W")) != EOF) 297 303 { 298 304 switch(optc) … … 370 376 remap = 0; 371 377 break; 378 case 'M': 379 masm_mode = 1; 380 break; 372 381 case 'n': 373 382 create_s = 0;
Note:
See TracChangeset
for help on using the changeset viewer.