Moved CPU definition into common/

git-svn-id: svn://svn.cc65.org/cc65/trunk@2111 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz
2003-05-01 23:24:20 +00:00
parent 8fb90af8ff
commit 986e3779ce
17 changed files with 174 additions and 81 deletions

View File

@@ -6,10 +6,10 @@
/* */
/* */
/* */
/* (C) 2000-2002 Ullrich von Bassewitz */
/* Wacholderweg 14 */
/* D-70597 Stuttgart */
/* EMail: uz@musoftware.de */
/* (C) 2000-2003 Ullrich von Bassewitz */
/* R<EFBFBD>merstrasse 52 */
/* D-70794 Filderstadt */
/* EMail: uz@cc65.org */
/* */
/* */
/* This software is provided 'as-is', without any expressed or implied */
@@ -69,7 +69,30 @@ const char* TargetNames [TGT_COUNT] = {
"geos",
"lunix",
"atmos"
};
};
/* Table with default CPUs per target */
const cpu_t DefaultCPU[TGT_COUNT] = {
CPU_6502, /* none */
CPU_6502, /* module */
CPU_6502, /* atari */
CPU_6502, /* vic20 */
CPU_6502, /* c16 */
CPU_6502, /* c64 */
CPU_6502, /* c128 */
CPU_6502, /* ace */
CPU_6502, /* plus4 */
CPU_6502, /* cbm510 */
CPU_6502, /* cbm610 */
CPU_6502, /* pet */
CPU_6502, /* bbc */
CPU_6502, /* apple2 */
CPU_6502, /* geos */
CPU_6502, /* lunix */
CPU_6502, /* atmos */
};