Added VTech Laser Turbo XT and Laser XT3. Patch from te_lanus.

This commit is contained in:
TomW 2015-08-02 11:35:09 +01:00
commit 396306bc39
3 changed files with 22 additions and 1 deletions

View file

@ -514,6 +514,23 @@ int loadbios()
fclose(f);
mem_load_xtide_bios();
return 1;
case ROM_LTXT:
f = romfopen("roms/ltxt/27C64.bin", "rb");
if (!f) break;
fread(rom + 0xE000, 8192, 1, f);
fclose(f);
mem_load_xtide_bios();
return 1;
case ROM_LXT3:
f = romfopen("roms/lxt3/27C64D.bin", "rb");
if (!f) break;
fread(rom + 0xE000, 8192, 1, f);
fclose(f);
mem_load_xtide_bios();
return 1;
}
printf("Failed to load ROM!\n");
if (f) fclose(f);