Add Gigabyte GA-686BX emulation.
As part of this, add i440BX chipset, PIIX4, and i28F002BC Flash.
This commit is contained in:
parent
3c4fa0511e
commit
fda3832e3a
16 changed files with 571 additions and 54 deletions
|
|
@ -1167,6 +1167,15 @@ int loadbios()
|
|||
|
||||
biosmask = 0x3ffff;
|
||||
return 1;
|
||||
|
||||
case ROM_GA686BX:
|
||||
f = romfopen("ga686bx/6BX.F2a", "rb");
|
||||
if (!f) break;
|
||||
romfread(rom, 0x40000, 1, f);
|
||||
fclose(f);
|
||||
|
||||
biosmask = 0x3ffff;
|
||||
return 1;
|
||||
}
|
||||
printf("Failed to load ROM!\n");
|
||||
if (f) fclose(f);
|
||||
|
|
|
|||
Loading…
Reference in a new issue