Added Hyundai Super-286TR emulation. Patch from EluanCM.

This commit is contained in:
SarahW 2020-03-12 18:14:07 +00:00
commit a113e4546f
12 changed files with 362 additions and 3 deletions

View file

@ -379,6 +379,13 @@ int loadbios()
fclose(f);
return 1;
case ROM_HYUNDAI_SUPER286TR:
f=romfopen("super286tr/award.bin","rb");
if (!f) break;
romfread(rom,65536,1,f);
fclose(f);
return 1;
case ROM_GW286CT:
f=romfopen("gw286ct/2ctc001.bin","rb");
if (!f) break;