2000-05-28 13:40:48 +00:00
|
|
|
/*****************************************************************************/
|
|
|
|
/* */
|
2000-08-23 14:13:24 +00:00
|
|
|
/* tgtcfg.c */
|
2000-05-28 13:40:48 +00:00
|
|
|
/* */
|
2000-08-23 14:13:24 +00:00
|
|
|
/* Target machine configurations the ld65 linker */
|
2000-05-28 13:40:48 +00:00
|
|
|
/* */
|
|
|
|
/* */
|
|
|
|
/* */
|
2002-04-25 05:14:14 +00:00
|
|
|
/* (C) 1998-2002 Ullrich von Bassewitz */
|
2000-05-28 13:40:48 +00:00
|
|
|
/* Wacholderweg 14 */
|
|
|
|
/* D-70597 Stuttgart */
|
|
|
|
/* EMail: uz@musoftware.de */
|
|
|
|
/* */
|
|
|
|
/* */
|
|
|
|
/* This software is provided 'as-is', without any expressed or implied */
|
|
|
|
/* warranty. In no event will the authors be held liable for any damages */
|
|
|
|
/* arising from the use of this software. */
|
|
|
|
/* */
|
|
|
|
/* Permission is granted to anyone to use this software for any purpose, */
|
|
|
|
/* including commercial applications, and to alter it and redistribute it */
|
|
|
|
/* freely, subject to the following restrictions: */
|
|
|
|
/* */
|
|
|
|
/* 1. The origin of this software must not be misrepresented; you must not */
|
|
|
|
/* claim that you wrote the original software. If you use this software */
|
|
|
|
/* in a product, an acknowledgment in the product documentation would be */
|
|
|
|
/* appreciated but is not required. */
|
|
|
|
/* 2. Altered source versions must be plainly marked as such, and must not */
|
|
|
|
/* be misrepresented as being the original software. */
|
|
|
|
/* 3. This notice may not be removed or altered from any source */
|
|
|
|
/* distribution. */
|
|
|
|
/* */
|
|
|
|
/*****************************************************************************/
|
|
|
|
|
|
|
|
|
2000-09-07 21:49:32 +00:00
|
|
|
|
2000-05-28 13:40:48 +00:00
|
|
|
#include "binfmt.h"
|
2000-08-23 14:13:24 +00:00
|
|
|
#include "tgtcfg.h"
|
2000-05-28 13:40:48 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*****************************************************************************/
|
|
|
|
/* Target configurations */
|
|
|
|
/*****************************************************************************/
|
|
|
|
|
|
|
|
|
2000-11-30 08:55:16 +00:00
|
|
|
|
2000-10-31 18:08:25 +00:00
|
|
|
/* An empty config */
|
|
|
|
static const char CfgEmpty[] = "";
|
2000-11-30 08:55:16 +00:00
|
|
|
|
2000-10-31 18:08:25 +00:00
|
|
|
/* Actual target configurations, converted into C strings by a perl script */
|
|
|
|
#include "apple2.inc"
|
|
|
|
#include "atari.inc"
|
2000-11-30 08:55:16 +00:00
|
|
|
#include "bbc.inc"
|
2000-10-31 18:08:25 +00:00
|
|
|
#include "c128.inc"
|
|
|
|
#include "c64.inc"
|
2001-09-13 19:49:27 +00:00
|
|
|
#include "cbm510.inc"
|
2000-10-31 18:08:25 +00:00
|
|
|
#include "cbm610.inc"
|
|
|
|
#include "geos.inc"
|
2001-12-01 13:34:51 +00:00
|
|
|
#include "lunix.inc"
|
2002-04-25 05:14:14 +00:00
|
|
|
#include "module.inc"
|
2000-10-31 18:08:25 +00:00
|
|
|
#include "none.inc"
|
|
|
|
#include "pet.inc"
|
|
|
|
#include "plus4.inc"
|
2001-09-13 19:49:27 +00:00
|
|
|
|
2000-05-28 13:40:48 +00:00
|
|
|
|
|
|
|
|
|
|
|
/*****************************************************************************/
|
2002-04-25 05:14:14 +00:00
|
|
|
/* Data */
|
2000-05-28 13:40:48 +00:00
|
|
|
/*****************************************************************************/
|
|
|
|
|
|
|
|
|
|
|
|
|
2000-08-23 14:13:24 +00:00
|
|
|
/* Target configurations for all systems */
|
|
|
|
const TargetDesc Targets [TGT_COUNT] = {
|
2002-04-25 05:14:14 +00:00
|
|
|
{ BINFMT_BINARY, CfgNone },
|
|
|
|
{ BINFMT_O65, CfgModule },
|
|
|
|
{ BINFMT_BINARY, CfgAtari },
|
|
|
|
{ BINFMT_BINARY, CfgC64 },
|
|
|
|
{ BINFMT_BINARY, CfgC128 },
|
2000-11-30 08:55:16 +00:00
|
|
|
{ BINFMT_BINARY, CfgEmpty }, /* Ace */
|
2002-04-25 05:14:14 +00:00
|
|
|
{ BINFMT_BINARY, CfgPlus4 },
|
|
|
|
{ BINFMT_BINARY, CfgCBM510 },
|
|
|
|
{ BINFMT_BINARY, CfgCBM610 },
|
|
|
|
{ BINFMT_BINARY, CfgPET },
|
|
|
|
{ BINFMT_BINARY, CfgBBC },
|
|
|
|
{ BINFMT_BINARY, CfgApple2 },
|
|
|
|
{ BINFMT_BINARY, CfgGeos },
|
2001-12-01 13:34:51 +00:00
|
|
|
{ BINFMT_O65, CfgLunix },
|
2000-05-28 13:40:48 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|