Mercurial > hg > index.cgi
changeset 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 | 776a076d1afa |
children | 1dcc0b174e3b |
files | lwasm/main.c |
diffstat | 1 files changed, 2 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/lwasm/main.c Wed Jun 05 19:57:09 2013 -0600 +++ b/lwasm/main.c Sat Jun 08 09:54:37 2013 -0600 @@ -150,6 +150,8 @@ as -> output_format = OUTPUT_DECB; else if (!strcasecmp(arg, "raw")) as -> output_format = OUTPUT_RAW; + else if (!strcasecmp(arg, "rawrel")) + as -> output_format = OUTPUT_RAWREL; else if (!strcasecmp(arg, "obj")) as -> output_format = OUTPUT_OBJ; else if (!strcasecmp(arg, "os9"))