comparison lwasm/main.c @ 276:49010c6653e7

Re-enable rawrel output format rawrel output format was disabled accidentally along the way. Re-enable the command line option for it.
author William Astle <lost@l-w.ca>
date Sat, 08 Jun 2013 09:54:37 -0600
parents 1f1a28b797e1
children d4ac484d0ec6
comparison
equal deleted inserted replaced
275:776a076d1afa 276:49010c6653e7
148 case 'f': 148 case 'f':
149 if (!strcasecmp(arg, "decb")) 149 if (!strcasecmp(arg, "decb"))
150 as -> output_format = OUTPUT_DECB; 150 as -> output_format = OUTPUT_DECB;
151 else if (!strcasecmp(arg, "raw")) 151 else if (!strcasecmp(arg, "raw"))
152 as -> output_format = OUTPUT_RAW; 152 as -> output_format = OUTPUT_RAW;
153 else if (!strcasecmp(arg, "rawrel"))
154 as -> output_format = OUTPUT_RAWREL;
153 else if (!strcasecmp(arg, "obj")) 155 else if (!strcasecmp(arg, "obj"))
154 as -> output_format = OUTPUT_OBJ; 156 as -> output_format = OUTPUT_OBJ;
155 else if (!strcasecmp(arg, "os9")) 157 else if (!strcasecmp(arg, "os9"))
156 { 158 {
157 as -> pragmas |= PRAGMA_DOLLARNOTLOCAL; 159 as -> pragmas |= PRAGMA_DOLLARNOTLOCAL;