X-Git-Url: http://gitweb.hugovil.com/?a=blobdiff_plain;ds=sidebyside;f=src%2Foptions.h;h=a03173ea0edb1be06b4c41cfa134558ffff5d74d;hb=5905b40585298defb8e4230adfe90dfbccb465b9;hp=8e8dfdec4aa3ee4f5bf7aaec0a077bda44fdda0f;hpb=a78a174393ff9c8dbc0d5212576507f25d7e9bf1;p=emu8051.git diff --git a/src/options.h b/src/options.h index 8e8dfde..a03173e 100644 --- a/src/options.h +++ b/src/options.h @@ -27,19 +27,18 @@ " -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[]); -char * -get_hex_filename(void); +const char * +get_package_description(void); #endif /* OPTIONS_H */