Refactor perl code to write file header
[emu8051.git] / src / options.h
index d84a989..a03173e 100644 (file)
 #ifndef OPTIONS_H
 #define OPTIONS_H 1
 
-
 #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"
-
+struct options_t {
+       int pram_size; /* Maximum program memory size. */
+       int iram_size; /* Maximum internal ram size. */
+       int xram_size; /* Maximum external ram size. */
+       char *filename;
+       int log;
+} options_t;
 
 void
-ParseCommandLineOptions( int argc, char *argv[] );
+parse_command_line_options(int argc, char *argv[]);
 
+const char *
+get_package_description(void);
 
 #endif /* OPTIONS_H */