Code simplification and cleanup
[emu8051.git] / src / options.h
index 657e263..e7fd9f6 100644 (file)
@@ -4,8 +4,21 @@
 #define OPTIONS_H 1
 
 
-char *
-GetHexFileName( void );
+#define COMMAND_LINE_OPTIONS \
+  "Usage: " PACKAGE " [OPTION]... [FILENAME]\n" \
+  "Simulator/emulator for 8051 family microcontrollers.\n\n" \
+  "  -h                    display this help and exit\n" \
+  "  -version              display version information and exit\n"
+
+#define VERSION_STRING \
+  PACKAGE "\n" \
+  "Version " VERSION "\n" \
+  "\n" \
+  "Written by\n" \
+  "Hugo Villeneuve\n" \
+  "Jonathan St-AndrĂ©\n" \
+  "Pascal Fecteau"
+
 
 void
 ParseCommandLineOptions( int argc, char *argv[] );