diff 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
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"))