X-Git-Url: http://gitweb.hugovil.com/?a=blobdiff_plain;f=src%2Foptions.h;h=e7fd9f66f8e06066cb4670e2024a62f62a0e970f;hb=b1fbb635cdd64e96bf36a62dc6b59d6724f5ad57;hp=657e263cfc9bb2fb7d0e5d49454cd1fe8482f7dc;hpb=ec415e2315bfcf647e07febba35db4ef709b27d0;p=emu8051.git diff --git a/src/options.h b/src/options.h index 657e263..e7fd9f6 100644 --- a/src/options.h +++ b/src/options.h @@ -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[] );