Exemplo n.º 1
0
bool c64_expansion_slot_device::call_softlist_load(char *swlist, char *swname, rom_entry *start_entry)
{
	load_software_part_region(this, swlist, swname, start_entry);

	return true;
}
Exemplo n.º 2
0
Arquivo: rom.c Projeto: dinkc64/mame
bool ql_rom_cartridge_slot_t::call_softlist_load(software_list_device &swlist, const char *swname, const rom_entry *start_entry)
{
    load_software_part_region(*this, swlist, swname, start_entry);

    return true;
}
Exemplo n.º 3
0
bool plus4_expansion_slot_device::call_softlist_load(software_list_device &swlist, const char *swname, const rom_entry *start_entry)
{
	load_software_part_region(*this, swlist, swname, start_entry);

	return true;
}
Exemplo n.º 4
0
bool cococart_slot_device::call_softlist_load(char *swlist, char *swname, rom_entry *start_entry)
{
	load_software_part_region(this, swlist, swname, start_entry );
	return TRUE;
}
Exemplo n.º 5
0
bool sega8_cart_slot_device::call_softlist_load(software_list_device &swlist, const char *swname, const rom_entry *start_entry)
{
	load_software_part_region(*this, swlist, swname, start_entry);
	return TRUE;
}
Exemplo n.º 6
0
Arquivo: chd_cd.c Projeto: bji/libmame
/*-------------------------------------------------
    DEVICE_IMAGE_SOFTLIST_LOAD(cdrom)
-------------------------------------------------*/
static DEVICE_IMAGE_SOFTLIST_LOAD(cdrom)
{
	load_software_part_region( &image.device(), swlist, swname, start_entry );
	return TRUE;
}