Add Compaq Deskpro emulation.
This commit is contained in:
parent
9b737f65b1
commit
7d4bc7237c
3 changed files with 14 additions and 4 deletions
|
|
@ -1097,6 +1097,14 @@ int loadbios()
|
|||
fclose(f);
|
||||
biosmask = 0x3fff;
|
||||
return 1;
|
||||
|
||||
case ROM_DESKPRO:
|
||||
f = romfopen("deskpro/Compaq - BIOS - Revision J - 106265-002.bin","rb");
|
||||
if (!f) break;
|
||||
romfread(rom, 0x2000, 1, f);
|
||||
fclose(f);
|
||||
biosmask = 0x1fff;
|
||||
return 1;
|
||||
}
|
||||
printf("Failed to load ROM!\n");
|
||||
if (f) fclose(f);
|
||||
|
|
|
|||
Loading…
Reference in a new issue