X-Git-Url: http://gitweb.hugovil.com/?a=blobdiff_plain;f=src%2Foptions.h;h=b58b636dc94a3ca4c95e3c1a9150bd00fbfcade9;hb=dd2261ab6cd2b8ddc9fd0078c995ec943fee8dbd;hp=2a1a1bc7e54f41f4069e941c77b6b50f0efd9a9f;hpb=3c5ab93d18bec33726e42747dd7862f73528b7bd;p=emu8051.git diff --git a/src/options.h b/src/options.h index 2a1a1bc..b58b636 100644 --- a/src/options.h +++ b/src/options.h @@ -27,19 +27,16 @@ " -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 iram_size; /* Maximum internal ram size. */ + int xram_size; /* Maximum external ram size. */ + char *filename; +} options_t; void -ParseCommandLineOptions(int argc, char *argv[]); +parse_command_line_options(int argc, char *argv[]); -char * -get_hex_filename(void); +const char * +get_package_description(void); #endif /* OPTIONS_H */