From 4107c2090e367fb71057bb19760e02f9c205e1a5 Mon Sep 17 00:00:00 2001 From: RichardG867 Date: Tue, 8 Sep 2020 22:19:36 -0300 Subject: [PATCH] Fix M6117 clocking mistake; the CPU has a clock divider(!) --- src/cpu/cpu_table.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/cpu/cpu_table.c b/src/cpu/cpu_table.c index 266872976..8d6a097ec 100644 --- a/src/cpu/cpu_table.c +++ b/src/cpu/cpu_table.c @@ -216,8 +216,8 @@ CPU cpus_Am386DX[] = { /* All M6117 timings and edx_reset values assumed. */ CPU cpus_ALiM6117[] = { /*i386DX/RapidCAD*/ - {"M6117/66", CPU_386DX, fpus_80386, 66666666, 1, 0x2308, 0, 0, 0, 3,3,3,3, 2}, - {"M6117/80", CPU_386DX, fpus_80386, 80000000, 1, 0x2308, 0, 0, 0, 4,4,3,3, 3}, + {"M6117/33", CPU_386DX, fpus_80386, 33333333, 1, 0x2308, 0, 0, 0, 6,6,3,3, 4}, + {"M6117/40", CPU_386DX, fpus_80386, 40000000, 1, 0x2308, 0, 0, 0, 7,7,3,3, 5}, {"", -1, 0, 0, 0, 0, 0, 0, 0,0,0,0, 0} }; #endif