diff lwasm/lwasm.h @ 484:469a130e7029

Add option to suppress output file Add --no-output to suppress creation of the output file altogether. Useful when the assembler is used for other features without needing the assembled object.
author William Astle <lost@l-w.ca>
date Tue, 19 Mar 2019 14:45:53 -0600
parents 74d0c394666e
children 7fbf3171ca15
line wrap: on
line diff
--- a/lwasm/lwasm.h	Tue Mar 19 14:37:56 2019 -0600
+++ b/lwasm/lwasm.h	Tue Mar 19 14:45:53 2019 -0600
@@ -73,8 +73,9 @@
 	FLAG_SYMBOLS = 0x004,
 	FLAG_DEPENDNOERR = 0x0008,
 	FLAG_UNICORNS = 0x0010,
-	FLAG_MAP = 0x0020,
-	FLAG_SYMBOLS_NOLOCALS = 0x0040,
+	FLAG_MAP = 0x0020,
+	FLAG_SYMBOLS_NOLOCALS = 0x0040,
+	FLAG_NOOUT = 0x80,
 	FLAG_NONE = 0
 };