]> git.sur5r.net Git - cc65/blob - src/ld65/tgtcfg.c
Added/completed/debugged o65 support for Lunix
[cc65] / src / ld65 / tgtcfg.c
1 /*****************************************************************************/
2 /*                                                                           */
3 /*                               tgtcfg.c                                    */
4 /*                                                                           */
5 /*               Target machine configurations the ld65 linker               */
6 /*                                                                           */
7 /*                                                                           */
8 /*                                                                           */
9 /* (C) 1998-2001 Ullrich von Bassewitz                                       */
10 /*               Wacholderweg 14                                             */
11 /*               D-70597 Stuttgart                                           */
12 /* EMail:        uz@musoftware.de                                            */
13 /*                                                                           */
14 /*                                                                           */
15 /* This software is provided 'as-is', without any expressed or implied       */
16 /* warranty.  In no event will the authors be held liable for any damages    */
17 /* arising from the use of this software.                                    */
18 /*                                                                           */
19 /* Permission is granted to anyone to use this software for any purpose,     */
20 /* including commercial applications, and to alter it and redistribute it    */
21 /* freely, subject to the following restrictions:                            */
22 /*                                                                           */
23 /* 1. The origin of this software must not be misrepresented; you must not   */
24 /*    claim that you wrote the original software. If you use this software   */
25 /*    in a product, an acknowledgment in the product documentation would be  */
26 /*    appreciated but is not required.                                       */
27 /* 2. Altered source versions must be plainly marked as such, and must not   */
28 /*    be misrepresented as being the original software.                      */
29 /* 3. This notice may not be removed or altered from any source              */
30 /*    distribution.                                                          */
31 /*                                                                           */
32 /*****************************************************************************/
33
34
35
36 #include "binfmt.h"
37 #include "tgtcfg.h"
38
39
40
41 /*****************************************************************************/
42 /*                           Target configurations                           */
43 /*****************************************************************************/
44
45
46
47 /* An empty config */
48 static const char CfgEmpty[] = "";
49
50 /* Actual target configurations, converted into C strings by a perl script */
51 #include "apple2.inc"
52 #include "atari.inc"
53 #include "bbc.inc"
54 #include "c128.inc"
55 #include "c64.inc"
56 #include "cbm510.inc"
57 #include "cbm610.inc"
58 #include "geos.inc"
59 #include "lunix.inc"
60 #include "none.inc"
61 #include "pet.inc"
62 #include "plus4.inc"
63
64
65
66 /*****************************************************************************/
67 /*                                   Data                                    */
68 /*****************************************************************************/
69
70
71
72 /* Target configurations for all systems */
73 const TargetDesc Targets [TGT_COUNT] = {
74     {   BINFMT_BINARY,  CfgNone         },
75     {   BINFMT_BINARY,  CfgAtari        },
76     {   BINFMT_BINARY,  CfgC64          },
77     {   BINFMT_BINARY,  CfgC128         },
78     {   BINFMT_BINARY,  CfgEmpty        },      /* Ace */
79     {   BINFMT_BINARY,  CfgPlus4        },
80     {   BINFMT_BINARY,  CfgCBM510       },
81     {   BINFMT_BINARY,  CfgCBM610       },
82     {   BINFMT_BINARY,  CfgPET          },
83     {   BINFMT_BINARY,  CfgBBC          },
84     {   BINFMT_BINARY,  CfgApple2       },
85     {   BINFMT_BINARY,  CfgGeos         },
86     {   BINFMT_O65,     CfgLunix        },
87 };
88
89
90
91