Added the NES target
git-svn-id: svn://svn.cc65.org/cc65/trunk@2121 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
parent
0db036a0e2
commit
6ace6309cd
3 changed files with 7 additions and 0 deletions
|
@ -15,6 +15,7 @@ cbm610.inc
|
|||
geos.inc
|
||||
lunix.inc
|
||||
module.inc
|
||||
nes.inc
|
||||
none.inc
|
||||
pet.inc
|
||||
plus4.inc
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
|
@ -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)
|
|||
|
||||
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue