Added IBM PS/2 Model 30-286 emulation. Patch from dns2k.
This commit is contained in:
parent
d20868f930
commit
c2a6ce2bac
12 changed files with 49 additions and 5 deletions
|
|
@ -617,6 +617,15 @@ int loadbios()
|
|||
fclose(f);
|
||||
mem_load_xtide_bios();
|
||||
return 1;
|
||||
|
||||
case ROM_IBMPS2_M30_286:
|
||||
f = romfopen("roms/ibmps2_m30_286/33f5381a.bin", "rb");
|
||||
fread(rom, 0x20000, 1, f);
|
||||
fclose(f);
|
||||
biosmask = 0x1ffff;
|
||||
mem_load_atide_bios();
|
||||
return 1;
|
||||
|
||||
}
|
||||
printf("Failed to load ROM!\n");
|
||||
if (f) fclose(f);
|
||||
|
|
|
|||
Loading…
Reference in a new issue