Misc ViRGE fixes. Changes to memory mapping. Changes to PCI handling. Disabled 'AMI WinBIOS 486 PCI' due to incomplete chipset emulation. Invalid GUS register reads no longer kill the emulator.
22 lines
398 B
C
22 lines
398 B
C
typedef struct
|
|
{
|
|
char name[24];
|
|
int id;
|
|
struct
|
|
{
|
|
char name[8];
|
|
CPU *cpus;
|
|
} cpu[3];
|
|
int fixed_gfxcard;
|
|
void (*init)();
|
|
} MODEL;
|
|
|
|
extern MODEL models[];
|
|
|
|
extern int model;
|
|
|
|
int model_count();
|
|
int model_getromset();
|
|
int model_getmodel(int romset);
|
|
char *model_getname();
|
|
void model_init();
|