2000-06-14 08:18:19 +00:00
|
|
|
/*****************************************************************************/
|
|
|
|
/* */
|
2003-05-01 23:24:20 +00:00
|
|
|
/* cpu.h */
|
2000-06-14 08:18:19 +00:00
|
|
|
/* */
|
2003-05-01 23:24:20 +00:00
|
|
|
/* CPU specifications */
|
2000-06-14 08:18:19 +00:00
|
|
|
/* */
|
|
|
|
/* */
|
|
|
|
/* */
|
2009-02-10 21:10:50 +00:00
|
|
|
/* (C) 2003-2009, Ullrich von Bassewitz */
|
|
|
|
/* Roemerstrasse 52 */
|
2005-08-26 12:44:25 +00:00
|
|
|
/* D-70794 Filderstadt */
|
|
|
|
/* EMail: uz@cc65.org */
|
2000-06-14 08:18:19 +00:00
|
|
|
/* */
|
|
|
|
/* */
|
|
|
|
/* 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. */
|
|
|
|
/* */
|
|
|
|
/*****************************************************************************/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef CPU_H
|
|
|
|
#define CPU_H
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*****************************************************************************/
|
2003-05-01 23:24:20 +00:00
|
|
|
/* Data */
|
2000-06-14 08:18:19 +00:00
|
|
|
/*****************************************************************************/
|
|
|
|
|
|
|
|
|
|
|
|
|
2003-05-01 23:24:20 +00:00
|
|
|
/* CPUs */
|
|
|
|
typedef enum {
|
|
|
|
CPU_UNKNOWN = -1, /* Not specified or invalid target */
|
2005-08-26 12:44:25 +00:00
|
|
|
CPU_NONE, /* No CPU - for assembler */
|
2000-06-14 08:18:19 +00:00
|
|
|
CPU_6502,
|
2004-05-09 21:06:36 +00:00
|
|
|
CPU_6502X, /* "Extended", that is: with illegal opcodes */
|
2003-08-07 11:13:13 +00:00
|
|
|
CPU_65SC02,
|
2003-05-01 23:24:20 +00:00
|
|
|
CPU_65C02,
|
|
|
|
CPU_65816,
|
|
|
|
CPU_SUNPLUS, /* Not in the freeware version - sorry */
|
2004-10-03 21:26:00 +00:00
|
|
|
CPU_SWEET16,
|
2005-08-31 21:46:12 +00:00
|
|
|
CPU_HUC6280, /* Used in PC engine */
|
2003-08-07 11:13:13 +00:00
|
|
|
CPU_COUNT /* Number of different CPUs */
|
2003-05-01 23:24:20 +00:00
|
|
|
} cpu_t;
|
2000-06-14 08:18:19 +00:00
|
|
|
|
2003-10-10 17:38:21 +00:00
|
|
|
/* CPU instruction sets */
|
|
|
|
enum {
|
2005-08-26 12:44:25 +00:00
|
|
|
CPU_ISET_NONE = 1 << CPU_NONE,
|
2003-10-10 17:38:21 +00:00
|
|
|
CPU_ISET_6502 = 1 << CPU_6502,
|
2004-05-09 21:06:36 +00:00
|
|
|
CPU_ISET_6502X = 1 << CPU_6502X,
|
2003-10-10 17:38:21 +00:00
|
|
|
CPU_ISET_65SC02 = 1 << CPU_65SC02,
|
|
|
|
CPU_ISET_65C02 = 1 << CPU_65C02,
|
|
|
|
CPU_ISET_65816 = 1 << CPU_65816,
|
2004-10-03 21:26:00 +00:00
|
|
|
CPU_ISET_SUNPLUS = 1 << CPU_SUNPLUS,
|
|
|
|
CPU_ISET_SWEET16 = 1 << CPU_SWEET16,
|
2005-08-31 21:46:12 +00:00
|
|
|
CPU_ISET_HUC6280 = 1 << CPU_HUC6280,
|
2003-10-10 17:38:21 +00:00
|
|
|
};
|
|
|
|
|
2003-05-01 23:24:20 +00:00
|
|
|
/* CPU used */
|
|
|
|
extern cpu_t CPU;
|
|
|
|
|
2003-10-10 17:38:21 +00:00
|
|
|
/* Table with CPU names */
|
2003-08-07 11:13:13 +00:00
|
|
|
extern const char* CPUNames[CPU_COUNT];
|
2003-05-01 23:24:20 +00:00
|
|
|
|
2003-10-10 17:38:21 +00:00
|
|
|
/* Table with CPU the instruction sets */
|
|
|
|
extern const unsigned CPUIsets[CPU_COUNT];
|
|
|
|
|
2003-05-01 23:24:20 +00:00
|
|
|
|
|
|
|
|
|
|
|
/*****************************************************************************/
|
2003-08-07 11:13:13 +00:00
|
|
|
/* Code */
|
2003-05-01 23:24:20 +00:00
|
|
|
/*****************************************************************************/
|
|
|
|
|
2005-08-26 12:44:25 +00:00
|
|
|
|
2003-05-01 23:24:20 +00:00
|
|
|
|
2009-02-10 21:10:50 +00:00
|
|
|
int ValidAddrSizeForCPU (unsigned char AddrSize);
|
|
|
|
/* Check if the given address size is valid for the current CPU */
|
|
|
|
|
2003-05-01 23:24:20 +00:00
|
|
|
cpu_t FindCPU (const char* Name);
|
|
|
|
/* Find a CPU by name and return the target id. CPU_UNKNOWN is returned if
|
|
|
|
* the given name is no valid target.
|
|
|
|
*/
|
2000-06-14 08:18:19 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* End of cpu.h */
|
|
|
|
|
2003-10-10 17:38:21 +00:00
|
|
|
#endif
|
2000-06-14 08:18:19 +00:00
|
|
|
|
|
|
|
|
|
|
|
|