X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=src%2Fld65%2Ftgtcfg.c;h=aac9005c525d6d61bcd428349bf4eb65c71c7416;hb=dc207514ddc8236903b883c4e4cfaee62255c917;hp=12c4a024bd75139256f19d52111049b4751a1057;hpb=606ecafccdc54975c8b1c6751d6b1dba083e6854;p=cc65 diff --git a/src/ld65/tgtcfg.c b/src/ld65/tgtcfg.c index 12c4a024b..aac9005c5 100644 --- a/src/ld65/tgtcfg.c +++ b/src/ld65/tgtcfg.c @@ -53,6 +53,7 @@ static const char CfgEmpty[] = ""; #include "atmos.inc" #include "bbc.inc" #include "c128.inc" +#include "c16.inc" #include "c64.inc" #include "cbm510.inc" #include "cbm610.inc" @@ -62,6 +63,7 @@ static const char CfgEmpty[] = ""; #include "none.inc" #include "pet.inc" #include "plus4.inc" +#include "vic20.inc" @@ -76,7 +78,8 @@ const TargetDesc Targets [TGT_COUNT] = { { BINFMT_BINARY, CfgNone }, { BINFMT_O65, CfgModule }, { BINFMT_BINARY, CfgAtari }, - { BINFMT_BINARY, CfgAtmos }, + { BINFMT_BINARY, CfgVic20 }, + { BINFMT_BINARY, CfgC16 }, { BINFMT_BINARY, CfgC64 }, { BINFMT_BINARY, CfgC128 }, { BINFMT_BINARY, CfgEmpty }, /* Ace */ @@ -88,7 +91,9 @@ const TargetDesc Targets [TGT_COUNT] = { { BINFMT_BINARY, CfgApple2 }, { BINFMT_BINARY, CfgGeos }, { BINFMT_O65, CfgLunix }, + { BINFMT_BINARY, CfgAtmos }, }; +