diff options
Diffstat (limited to 'src/devices/bus/astrocde/slot.h')
-rw-r--r-- | src/devices/bus/astrocde/slot.h | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/src/devices/bus/astrocde/slot.h b/src/devices/bus/astrocde/slot.h index d16f37e0fb1..a366b9dc518 100644 --- a/src/devices/bus/astrocde/slot.h +++ b/src/devices/bus/astrocde/slot.h @@ -5,7 +5,7 @@ #pragma once -#include "softlist_dev.h" +#include "imagedev/cartrom.h" /*************************************************************************** @@ -51,7 +51,7 @@ protected: // ======================> astrocade_cart_slot_device class astrocade_cart_slot_device : public device_t, - public device_image_interface, + public device_cartrom_image_interface, public device_single_card_slot_interface<device_astrocade_cart_interface> { public: @@ -71,13 +71,7 @@ public: // image-level overrides virtual image_init_result call_load() override; 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 noexcept override { return IO_CARTSLOT; } - virtual bool is_readable() const noexcept override { return true; } - virtual bool is_writeable() const noexcept override { return false; } - virtual bool is_creatable() const noexcept override { return false; } - virtual bool must_be_loaded() const noexcept override { return false; } virtual bool is_reset_on_load() const noexcept override { return true; } virtual const char *image_interface() const noexcept override { return "astrocde_cart"; } virtual const char *file_extensions() const noexcept override { return "bin"; } |