Added Packard Bell Legend 300SX. Patch from dns2kv2.

This commit is contained in:
SarahW 2018-02-12 12:37:21 +00:00
commit 90c8d0939c
5 changed files with 19 additions and 1 deletions

View file

@ -791,6 +791,14 @@ int loadbios()
biosmask = 0x7fff;
fclose(f);
return 1;
case ROM_PB_L300SX:
f = romfopen("pb_l300sx/pb_l300sx.bin", "rb");
if (!f) break;
romfread(rom, 65536, 1, f);
fclose(f);
return 1;
}
printf("Failed to load ROM!\n");
if (f) fclose(f);