Fix CPU table issues

This commit is contained in:
RichardG867
2020-12-18 16:16:04 -03:00
parent d5e9ee763d
commit b64ecbaa5a
5 changed files with 88 additions and 82 deletions

View File

@@ -32,7 +32,7 @@ enum {
};
enum {
CPU_8088, /* 808x class CPUs */
CPU_8088 = 1, /* 808x class CPUs */
CPU_8086,
#ifdef USE_NEC_808X
CPU_V20, /* NEC 808x class CPUs - future proofing */
@@ -157,7 +157,7 @@ typedef struct {
const char *manufacturer;
const char *name;
const char *internal_name;
const CPU cpus[32];
const CPU *cpus;
} cpu_family_t;
typedef struct {