Implemented preliminary S3 ViRGE 2D blitter emulation.

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.
This commit is contained in:
TomW 2014-03-20 14:03:55 +00:00
commit 2ca4ead570
49 changed files with 2078 additions and 700 deletions

View file

@ -85,6 +85,7 @@ void fatal(const char *format, ...)
va_end(ap);
fputs(buf,pclogf);
fflush(pclogf);
dumppic();
dumpregs();
exit(-1);
}
@ -206,9 +207,9 @@ void initpc()
initvideo();
mem_init();
mem_load_video_bios();
loadbios();
mem_add_bios();
loaddisc(0,discfns[0]);
loaddisc(1,discfns[1]);
@ -436,6 +437,9 @@ void loadconfig()
model = get_config_int(NULL, "model", 14);
if (model >= model_count())
model = model_count() - 1;
romset = model_getromset();
cpu_manufacturer = get_config_int(NULL, "cpu_manufacturer", 0);
cpu = get_config_int(NULL, "cpu", 0);