Patch for the revamp
- Delinked CPU bus speed from PCI speed - Changed the CPU multiplier from an integer to a double - Changed the CPU cache/mem cycles on the K6-2s from fractions to integers - Fixed cache/mem cycles on the faster Cyrix MIIs - Fixed some spacing issues that I created
This commit is contained in:
@@ -82,18 +82,18 @@
|
||||
|
||||
|
||||
typedef struct {
|
||||
const char *name;
|
||||
int cpu_type;
|
||||
int rspeed;
|
||||
int multi;
|
||||
int pci_speed;
|
||||
uint32_t edx_reset;
|
||||
uint32_t cpuid_model;
|
||||
uint16_t cyrix_id;
|
||||
uint8_t cpu_flags;
|
||||
int8_t mem_read_cycles, mem_write_cycles;
|
||||
int8_t cache_read_cycles, cache_write_cycles;
|
||||
int8_t atclk_div;
|
||||
const char *name;
|
||||
int cpu_type;
|
||||
int rspeed;
|
||||
double multi;
|
||||
int pci_speed;
|
||||
uint32_t edx_reset;
|
||||
uint32_t cpuid_model;
|
||||
uint16_t cyrix_id;
|
||||
uint8_t cpu_flags;
|
||||
int8_t mem_read_cycles, mem_write_cycles;
|
||||
int8_t cache_read_cycles, cache_write_cycles;
|
||||
int8_t atclk_div;
|
||||
} CPU;
|
||||
|
||||
extern CPU cpus_8088[];
|
||||
|
||||
Reference in New Issue
Block a user