X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=src%2Fld65%2Ftgtcfg.c;h=aac9005c525d6d61bcd428349bf4eb65c71c7416;hb=dc207514ddc8236903b883c4e4cfaee62255c917;hp=8dc10a8165f4315f42f790bfc0f5ac32058fde87;hpb=dab745e4b13a7df70503cf534ce435dd95d09999;p=cc65 diff --git a/src/ld65/tgtcfg.c b/src/ld65/tgtcfg.c index 8dc10a816..aac9005c5 100644 --- a/src/ld65/tgtcfg.c +++ b/src/ld65/tgtcfg.c @@ -50,8 +50,10 @@ static const char CfgEmpty[] = ""; /* Actual target configurations, converted into C strings by a perl script */ #include "apple2.inc" #include "atari.inc" +#include "atmos.inc" #include "bbc.inc" #include "c128.inc" +#include "c16.inc" #include "c64.inc" #include "cbm510.inc" #include "cbm610.inc" @@ -61,6 +63,7 @@ static const char CfgEmpty[] = ""; #include "none.inc" #include "pet.inc" #include "plus4.inc" +#include "vic20.inc" @@ -75,6 +78,8 @@ const TargetDesc Targets [TGT_COUNT] = { { BINFMT_BINARY, CfgNone }, { BINFMT_O65, CfgModule }, { BINFMT_BINARY, CfgAtari }, + { BINFMT_BINARY, CfgVic20 }, + { BINFMT_BINARY, CfgC16 }, { BINFMT_BINARY, CfgC64 }, { BINFMT_BINARY, CfgC128 }, { BINFMT_BINARY, CfgEmpty }, /* Ace */ @@ -86,7 +91,9 @@ const TargetDesc Targets [TGT_COUNT] = { { BINFMT_BINARY, CfgApple2 }, { BINFMT_BINARY, CfgGeos }, { BINFMT_O65, CfgLunix }, + { BINFMT_BINARY, CfgAtmos }, }; +