hp9845b: Use standard instance names (and type) for optional ROMs

This commit is contained in:
AJR 2017-02-27 11:41:31 -05:00
parent 307e6a27b4
commit 053ea31f64
2 changed files with 2 additions and 2 deletions

View File

@ -55,7 +55,7 @@ void hp_optrom_slot_device::device_start()
void hp_optrom_slot_device::device_config_complete()
{
update_names(HP_OPTROM_SLOT , "optional_rom" , "optrom");
update_names();
}
image_init_result hp_optrom_slot_device::call_load()

View File

@ -46,7 +46,7 @@ public:
virtual void call_unload() override;
virtual const software_list_loader &get_software_list_loader() const override { return rom_software_list_loader::instance(); }
virtual iodevice_t image_type() const override { return IO_CARTSLOT; }
virtual iodevice_t image_type() const override { return IO_ROM; }
virtual bool is_readable() const override { return true; }
virtual bool is_writeable() const override { return false; }
virtual bool is_creatable() const override { return false; }