Added parsing of arguments to --read. The explicit format spec is currently

broken.


git-svn-id: svn://svn.cc65.org/cc65/trunk@5576 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
uz
2012-03-04 21:02:31 +00:00
parent 594e446ac5
commit 3cef75b26c
5 changed files with 198 additions and 6 deletions

View File

@@ -44,11 +44,26 @@
#include "version.h"
/* sp65 */
#include "attr.h"
#include "error.h"
#include "input.h"
/*****************************************************************************/
/* Data */
/*****************************************************************************/
/* Bitmap first read */
static Bitmap* B;
/* Bitmap last processed */
static Bitmap* C;
/*****************************************************************************/
/* Code */
/*****************************************************************************/
@@ -66,7 +81,7 @@ static void Usage (void)
" -v\t\t\tIncrease verbosity\n"
"\n"
"Long options:\n"
" --help\t\tHelp (this text)\n"
" --help\t\tHelp (this text)\n"
" --verbose\t\tIncrease verbosity\n"
" --version\t\tPrint the version number and exit\n",
ProgName);
@@ -84,9 +99,32 @@ static void OptHelp (const char* Opt attribute ((unused)),
static void OptRead (const char* Opt attribute ((unused)), const char* Arg)
static void OptRead (const char* Opt, const char* Arg)
/* Read an input file */
{
static const char* NameList[] = {
"name", "format"
};
/* Parse the argument */
Collection* C = ParseAttrList (Arg, NameList, 2);
/* Must have a file name given */
const char* FileName = NeedAttrVal (C, "name", Opt);
/* Determine the format of the input file */
int IF = ifAuto;
const char* Format = GetAttrVal (C, "format");
if (Format != 0) {
IF = FindInputFormat (Format);
if (IF <= 0) {
Error ("Unknown input format `%s'", Format);
}
}
/* Read the file */
B = ReadInputFile (FileName, IF);
}