Added Pentium Overdrive support. Patch from nerd73.
This commit is contained in:
parent
8ceb92db82
commit
436c5b8cc2
2 changed files with 5 additions and 1 deletions
|
|
@ -233,6 +233,10 @@ CPU cpus_i486[] =
|
|||
{"i486DX2/66", CPU_i486DX, 6, 66666666, 2, 0x430, 0, 0},
|
||||
{"iDX4/75", CPU_i486DX, 7, 75000000, 3, 0x481, 0x481, 0}, /*CPUID available on DX4, >= 75 MHz*/
|
||||
{"iDX4/100", CPU_i486DX,10, 100000000, 3, 0x481, 0x481, 0}, /*Is on some real Intel DX2s, limit here is pretty arbitary*/
|
||||
#ifdef DYNAREC
|
||||
{"Pentium OverDrive/63", CPU_PENTIUM, 6, 62500000, 3, 0x1531, 0x1531, 0},
|
||||
{"Pentium OverDrive/83", CPU_PENTIUM, 8, 83333333, 3, 0x1532, 0x1532, 0},
|
||||
#endif
|
||||
{"", -1, 0, 0, 0}
|
||||
};
|
||||
|
||||
|
|
|
|||
|
|
@ -44,7 +44,7 @@ extern int timing_bt, timing_bnt;
|
|||
|
||||
typedef struct
|
||||
{
|
||||
char name[16];
|
||||
char name[32];
|
||||
int cpu_type;
|
||||
int speed;
|
||||
int rspeed;
|
||||
|
|
|
|||
Loading…
Reference in a new issue