From cb7b54bc8af9897c51e08a901347a3b415f202f6 Mon Sep 17 00:00:00 2001 From: SarahW Date: Sat, 9 Dec 2017 22:09:30 +0000 Subject: [PATCH] Correct path of Western Digital WD1007V-SE1 ROM image. --- src/esdi_at.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/esdi_at.c b/src/esdi_at.c index c174d1c..927ebe9 100644 --- a/src/esdi_at.c +++ b/src/esdi_at.c @@ -794,7 +794,7 @@ void *wd1007vse1_init() esdi->status = STAT_READY | STAT_DSC; esdi->error = 1; /*No errors*/ - rom_init(&esdi->bios_rom, "roms/62-000279-061.bin", 0xc8000, 0x4000, 0x3fff, 0, MEM_MAPPING_EXTERNAL); + rom_init(&esdi->bios_rom, "62-000279-061.bin", 0xc8000, 0x4000, 0x3fff, 0, MEM_MAPPING_EXTERNAL); mem_mapping_set_handler(&esdi->bios_rom.mapping, rom_read, rom_readw, rom_readl, @@ -821,7 +821,7 @@ void wd1007vse1_close(void *p) static int wd1007vse1_available() { - return rom_present("roms/62-000279-061.bin"); + return rom_present("62-000279-061.bin"); } device_t wd1007vse1_device =