part of #1792 - 48GS02 assembler support
This commit is contained in:
@@ -63,6 +63,7 @@ const char* CPUNames[CPU_COUNT] = {
|
||||
"huc6280",
|
||||
"m740",
|
||||
"4510",
|
||||
"45GS02"
|
||||
};
|
||||
|
||||
/* Tables with CPU instruction sets */
|
||||
@@ -78,6 +79,7 @@ const unsigned CPUIsets[CPU_COUNT] = {
|
||||
CPU_ISET_6502 | CPU_ISET_65SC02 | CPU_ISET_65C02 | CPU_ISET_HUC6280,
|
||||
CPU_ISET_6502 | CPU_ISET_M740,
|
||||
CPU_ISET_6502 | CPU_ISET_65SC02 | CPU_ISET_65C02 | CPU_ISET_4510,
|
||||
CPU_ISET_6502 | CPU_ISET_65SC02 | CPU_ISET_65C02 | CPU_ISET_4510 | CPU_ISET_45GS02,
|
||||
};
|
||||
|
||||
|
||||
|
||||
@@ -58,6 +58,7 @@ typedef enum {
|
||||
CPU_HUC6280, /* Used in PC engine */
|
||||
CPU_M740, /* Mitsubishi 740 series MCUs */
|
||||
CPU_4510, /* CPU of C65 */
|
||||
CPU_45GS02, /* CPU of MEGA65 */
|
||||
CPU_COUNT /* Number of different CPUs */
|
||||
} cpu_t;
|
||||
|
||||
@@ -74,6 +75,7 @@ enum {
|
||||
CPU_ISET_HUC6280 = 1 << CPU_HUC6280,
|
||||
CPU_ISET_M740 = 1 << CPU_M740,
|
||||
CPU_ISET_4510 = 1 << CPU_4510,
|
||||
CPU_ISET_45GS02 = 1 << CPU_45GS02
|
||||
};
|
||||
|
||||
/* CPU used */
|
||||
|
||||
Reference in New Issue
Block a user