Prepare WD76C10 for 286/386 interpreter selection, exempt IBM 486BL and all Cyrix'es from the 286/386 interpreter.

This commit is contained in:
OBattler
2024-04-24 06:06:09 +02:00
parent 7feb6f578d
commit 15e3876e21
4 changed files with 79 additions and 15 deletions

View File

@@ -1803,7 +1803,8 @@ cpu_set(void)
} else
#endif
/* Use exec386 for CPU_IBM486SLC because it can reach 100 MHz. */
if ((cpu_s->cpu_type == CPU_IBM486SLC) || (cpu_s->cpu_type > CPU_486DLC)) {
if ((cpu_s->cpu_type == CPU_IBM486SLC) || (cpu_s->cpu_type == CPU_IBM486BL) ||
cpu_iscyrix || (cpu_s->cpu_type > CPU_486DLC)) {
cpu_exec = exec386;
cpu_use_exec = 1;
} else