1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-11 05:29:33 +00:00

Added preliminary support for -t option.

git-svn-id: svn://svn.cc65.org/cc65/trunk@5327 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
ol.sc 2011-12-27 16:53:11 +00:00
parent 6dc42b30a3
commit 143dcec5e6

View File

@ -25,6 +25,7 @@
#include "fname.h"
#include "abend.h"
#include "chartype.h"
#include "target.h"
#include "xmalloc.h"
/* I hope that no one will be able to create a .grc bigger than this... */
@ -100,6 +101,7 @@ char *ProgName; /* for AbEnd, later remove and use common/cmdline.h */
char *outputCName = NULL, *outputSName = NULL;
FILE *outputCFile, *outputSFile;
int CFnum = 0, SFnum = 0;
int apple = 0;
char outputCMode[2] = "w";
char outputSMode[2] = "w";
@ -110,7 +112,8 @@ void printUsage(void) {
"Options:\n"
"\t-h, -?\t\tthis help\n"
"\t-o name\t\tname C output file\n"
"\t-s name\t\tname asm output file\n",
"\t-s name\t\tname asm output file\n"
"\t-t sys\t\tset target system\n",
ProgName);
}
@ -740,6 +743,18 @@ int main(int argc, char *argv[]) {
case 's':
outputSName = argv[++i];
break;
case 't':
switch (FindTarget(argv[++i])) {
case TGT_GEOS: // todo: TGT_GEOS-CBM
apple = 0;
break;
case TGT_COUNT: //todo: TGT_GEOS-APPLE
apple = 1;
break;
default:
AbEnd("unknown target system type %s\n", argv[i]);
}
break;
case 'h':
case '?':
printUsage();