mirror of
https://github.com/cc65/cc65.git
synced 2025-08-16 12:27:49 +00:00
New target APPLE2ENH
git-svn-id: svn://svn.cc65.org/cc65/trunk@2910 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
@@ -51,6 +51,7 @@ OBJS = asserts.o \
|
|||||||
# List of all config includes
|
# List of all config includes
|
||||||
|
|
||||||
INCS = apple2.inc \
|
INCS = apple2.inc \
|
||||||
|
apple2enh.inc \
|
||||||
atari.inc \
|
atari.inc \
|
||||||
atmos.inc \
|
atmos.inc \
|
||||||
bbc.inc \
|
bbc.inc \
|
||||||
@@ -114,6 +115,10 @@ depend dep: $(OBJS:.o=.c)
|
|||||||
|
|
||||||
apple2.inc: cfg/apple2.cfg
|
apple2.inc: cfg/apple2.cfg
|
||||||
@$(CVT) $< $@ CfgApple2
|
@$(CVT) $< $@ CfgApple2
|
||||||
|
|
||||||
|
# The apple2enh target uses the same config as the apple2
|
||||||
|
apple2enh.inc: cfg/apple2.cfg
|
||||||
|
@$(CVT) $< $@ CfgApple2Enh
|
||||||
|
|
||||||
atari.inc: cfg/atari.cfg
|
atari.inc: cfg/atari.cfg
|
||||||
@$(CVT) $< $@ CfgAtari
|
@$(CVT) $< $@ CfgAtari
|
||||||
|
@@ -53,6 +53,7 @@ static const char CfgEmpty[] = "";
|
|||||||
|
|
||||||
/* Actual target configurations, converted into C strings by a perl script */
|
/* Actual target configurations, converted into C strings by a perl script */
|
||||||
#include "apple2.inc"
|
#include "apple2.inc"
|
||||||
|
#include "apple2enh.inc"
|
||||||
#include "atari.inc"
|
#include "atari.inc"
|
||||||
#include "atmos.inc"
|
#include "atmos.inc"
|
||||||
#include "bbc.inc"
|
#include "bbc.inc"
|
||||||
@@ -78,7 +79,7 @@ static const char CfgEmpty[] = "";
|
|||||||
/*****************************************************************************/
|
/*****************************************************************************/
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/* Target configurations for all systems */
|
/* Target configurations for all systems */
|
||||||
const TargetDesc Targets [TGT_COUNT] = {
|
const TargetDesc Targets [TGT_COUNT] = {
|
||||||
{ BINFMT_BINARY, CfgNone },
|
{ BINFMT_BINARY, CfgNone },
|
||||||
@@ -95,6 +96,7 @@ const TargetDesc Targets [TGT_COUNT] = {
|
|||||||
{ BINFMT_BINARY, CfgPET },
|
{ BINFMT_BINARY, CfgPET },
|
||||||
{ BINFMT_BINARY, CfgBBC },
|
{ BINFMT_BINARY, CfgBBC },
|
||||||
{ BINFMT_BINARY, CfgApple2 },
|
{ BINFMT_BINARY, CfgApple2 },
|
||||||
|
{ BINFMT_BINARY, CfgApple2Enh },
|
||||||
{ BINFMT_BINARY, CfgGeos },
|
{ BINFMT_BINARY, CfgGeos },
|
||||||
{ BINFMT_O65, CfgLunix },
|
{ BINFMT_O65, CfgLunix },
|
||||||
{ BINFMT_BINARY, CfgAtmos },
|
{ BINFMT_BINARY, CfgAtmos },
|
||||||
|
Reference in New Issue
Block a user