Use CPUIsets from cpu.c instead of recreating the CPU_xxx constants.

This commit is contained in:
Kugel Fuhr
2025-07-01 13:02:15 +02:00
parent 37414199c7
commit 60ec9045fc
3 changed files with 29 additions and 25 deletions

View File

@@ -69,7 +69,7 @@ typedef enum {
CPU_COUNT /* Number of different CPUs */
} cpu_t;
/* CPU instruction sets (make sure this matches asminc/cpu.mac) */
/* CPU instruction sets */
enum {
CPU_ISET_NONE = 1 << CPU_NONE,
CPU_ISET_6502 = 1 << CPU_6502,