1
0
mirror of https://github.com/cc65/cc65.git synced 2024-09-30 08:57:49 +00:00

Added the NES target

git-svn-id: svn://svn.cc65.org/cc65/trunk@2121 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz 2003-05-02 13:49:49 +00:00
parent 0db036a0e2
commit 6ace6309cd
3 changed files with 7 additions and 0 deletions

View File

@ -15,6 +15,7 @@ cbm610.inc
geos.inc
lunix.inc
module.inc
nes.inc
none.inc
pet.inc
plus4.inc

View File

@ -142,6 +142,9 @@ lunix.inc: cfg/lunix.cfg
module.inc: cfg/module.cfg
@$(CVT) $< $@ CfgModule
nes.inc: cfg/nes.cfg
@$(CVT) $< $@ CfgNES
none.inc: cfg/none.cfg
@$(CVT) $< $@ CfgNone

View File

@ -64,6 +64,7 @@ static const char CfgEmpty[] = "";
#include "geos.inc"
#include "lunix.inc"
#include "module.inc"
#include "nes.inc"
#include "none.inc"
#include "pet.inc"
#include "plus4.inc"
@ -96,6 +97,7 @@ const TargetDesc Targets [TGT_COUNT] = {
{ BINFMT_BINARY, CfgGeos },
{ BINFMT_O65, CfgLunix },
{ BINFMT_BINARY, CfgAtmos },
{ BINFMT_BINARY, CfgNES },
};
@ -118,3 +120,4 @@ void DumpBuiltinConfig (FILE* F, target_t T)