diff lwasm/lwasm.h @ 321:d4ac484d0ec6

Add support for Motorola SREC and Intel Hex output formats to lwasm. Add support for creating SREC (--format=srec), Intel Hex (--format=ihex), and a generic hexadecimal (--format=hex) output formats.
author Tom LeMense <tlemense@yahoo.com>
date Mon, 03 Mar 2014 21:30:38 -0700
parents d0e9dbe9afbe
children 507f442dc71e
line wrap: on
line diff
--- a/lwasm/lwasm.h	Sat Feb 08 19:25:11 2014 -0700
+++ b/lwasm/lwasm.h	Mon Mar 03 21:30:38 2014 -0700
@@ -53,7 +53,10 @@
 	OUTPUT_RAW,			// raw sequence of bytes
 	OUTPUT_OBJ,			// proprietary object file format
 	OUTPUT_RAWREL,		// raw bytes where ORG causes a SEEK in the file
-	OUTPUT_OS9			// os9 module target
+	OUTPUT_OS9,			// os9 module target
+	OUTPUT_SREC,		// motorola SREC format
+	OUTPUT_IHEX,		// intel hex format
+	OUTPUT_HEX			// generic hexadecimal format
 };
 
 enum lwasm_target_e