All ROM image file names now lower case. Patch from tomaszkam.

This commit is contained in:
SarahW 2017-04-19 16:35:07 +01:00
commit bc5b6d63f7
6 changed files with 47 additions and 45 deletions

View file

@ -148,7 +148,7 @@ void *et4000_init()
et4000_t *et4000 = malloc(sizeof(et4000_t));
memset(et4000, 0, sizeof(et4000_t));
rom_init(&et4000->bios_rom, "roms/et4000.BIN", 0xc0000, 0x8000, 0x7fff, 0, MEM_MAPPING_EXTERNAL);
rom_init(&et4000->bios_rom, "roms/et4000.bin", 0xc0000, 0x8000, 0x7fff, 0, MEM_MAPPING_EXTERNAL);
io_sethandler(0x03c0, 0x0020, et4000_in, NULL, NULL, et4000_out, NULL, NULL, et4000);
@ -163,7 +163,7 @@ void *et4000_init()
static int et4000_available()
{
return rom_present("roms/et4000.BIN");
return rom_present("roms/et4000.bin");
}
void et4000_close(void *p)