Replaced the unused NES target by BBC
git-svn-id: svn://svn.cc65.org/cc65/trunk@497 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
@@ -4,6 +4,7 @@ ld65
|
||||
*.s
|
||||
apple2.inc
|
||||
atari.inc
|
||||
bbc.inc
|
||||
c128.inc
|
||||
c64.inc
|
||||
cbm610.inc
|
||||
|
||||
@@ -44,6 +44,7 @@ OBJS = bin.o \
|
||||
|
||||
INCS = apple2.inc \
|
||||
atari.inc \
|
||||
bbc.inc \
|
||||
c64.inc \
|
||||
c128.inc \
|
||||
cbm610.inc \
|
||||
@@ -100,6 +101,9 @@ apple2.inc: cfg/apple2.cfg
|
||||
atari.inc: cfg/atari.cfg
|
||||
@$(CVT) $< $@ CfgAtari
|
||||
|
||||
bbc.inc: cfg/bbc.cfg
|
||||
@$(CVT) $< $@ CfgBBC
|
||||
|
||||
c64.inc: cfg/c64.cfg
|
||||
@$(CVT) $< $@ CfgC64
|
||||
|
||||
|
||||
@@ -43,13 +43,14 @@
|
||||
/*****************************************************************************/
|
||||
|
||||
|
||||
|
||||
|
||||
/* An empty config */
|
||||
static const char CfgEmpty[] = "";
|
||||
|
||||
|
||||
/* Actual target configurations, converted into C strings by a perl script */
|
||||
#include "apple2.inc"
|
||||
#include "atari.inc"
|
||||
#include "bbc.inc"
|
||||
#include "c128.inc"
|
||||
#include "c64.inc"
|
||||
#include "cbm610.inc"
|
||||
@@ -57,7 +58,7 @@ static const char CfgEmpty[] = "";
|
||||
#include "none.inc"
|
||||
#include "pet.inc"
|
||||
#include "plus4.inc"
|
||||
|
||||
|
||||
|
||||
|
||||
/*****************************************************************************/
|
||||
@@ -72,15 +73,15 @@ const TargetDesc Targets [TGT_COUNT] = {
|
||||
{ BINFMT_BINARY, CfgAtari },
|
||||
{ BINFMT_BINARY, CfgC64 },
|
||||
{ BINFMT_BINARY, CfgC128 },
|
||||
{ BINFMT_BINARY, CfgEmpty }, /* Ace */
|
||||
{ BINFMT_BINARY, CfgEmpty }, /* Ace */
|
||||
{ BINFMT_BINARY, CfgPlus4 },
|
||||
{ BINFMT_BINARY, CfgCBM610 },
|
||||
{ BINFMT_BINARY, CfgPET },
|
||||
{ BINFMT_BINARY, CfgEmpty }, /* NES */
|
||||
{ BINFMT_BINARY, CfgBBC },
|
||||
{ BINFMT_BINARY, CfgApple2 },
|
||||
{ BINFMT_BINARY, CfgGeos },
|
||||
};
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user