Added Thomson TO16 PC. Patch from dns2kv2.

This commit is contained in:
SarahW 2018-02-12 13:24:00 +00:00
commit 788402b879
3 changed files with 9 additions and 0 deletions

View file

@ -806,6 +806,13 @@ int loadbios()
fclose(f);
biosmask = 0x3fff;
return 1;
case ROM_TO16_PC:
f=romfopen("to16_pc/TO16_103.bin","rb");
if (!f) break;
romfread(rom+0x8000,32768,1,f);
fclose(f);
return 1;
}
printf("Failed to load ROM!\n");
if (f) fclose(f);