Esempio n. 1
0
int driverom_load_images(void)
{
    drive_rom_load_ok = 1;

    machine_drive_rom_load();

    if (machine_drive_rom_check_loaded(DRIVE_TYPE_ANY) < 0) {
        log_error(driverom_log,
                  "No ROM image found at all!  "
                  "Hardware-level emulation is not available.");
        return -1;
    }

    return 0;
}
Esempio n. 2
0
int driverom_load_images(void)
{
	drive_rom_load_ok = 1;

	machine_drive_rom_load();

	if (machine_drive_rom_check_loaded(DRIVE_TYPE_ANY) < 0)
	{
#ifdef CELL_DEBUG
		printf("ERROR: No ROM image found at all!\nHardware-level emulation is not available.\n");
#endif
		return -1;
	}

	return 0;
}