Add initial Mazovia 1016 emulation
This commit is contained in:
@@ -203,6 +203,7 @@ int cpu_override_interpreter;
|
||||
int CPUID;
|
||||
|
||||
int is186;
|
||||
int is_mazovia;
|
||||
int is_nec;
|
||||
int is286;
|
||||
int is386;
|
||||
@@ -517,6 +518,7 @@ cpu_set(void)
|
||||
|
||||
CPUID = cpu_s->cpuid_model;
|
||||
is8086 = (cpu_s->cpu_type > CPU_8088) && (cpu_s->cpu_type != CPU_V20) && (cpu_s->cpu_type != CPU_188);
|
||||
is_mazovia = (cpu_s->cpu_type == CPU_8086_MAZOVIA);
|
||||
is_nec = (cpu_s->cpu_type == CPU_V20) || (cpu_s->cpu_type == CPU_V30);
|
||||
is186 = (cpu_s->cpu_type == CPU_186) || (cpu_s->cpu_type == CPU_188) || (cpu_s->cpu_type == CPU_V20) || (cpu_s->cpu_type == CPU_V30);
|
||||
is286 = (cpu_s->cpu_type >= CPU_286);
|
||||
@@ -767,6 +769,7 @@ cpu_set(void)
|
||||
switch (cpu_s->cpu_type) {
|
||||
case CPU_8088:
|
||||
case CPU_8086:
|
||||
case CPU_8086_MAZOVIA:
|
||||
break;
|
||||
|
||||
case CPU_V20:
|
||||
|
||||
Reference in New Issue
Block a user