diff options
Diffstat (limited to 'src/devices/bus/ieee488/grid2102.h')
-rw-r--r-- | src/devices/bus/ieee488/grid2102.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/devices/bus/ieee488/grid2102.h b/src/devices/bus/ieee488/grid2102.h index 4bf4403ddc8..b41dc8b4b0c 100644 --- a/src/devices/bus/ieee488/grid2102.h +++ b/src/devices/bus/ieee488/grid2102.h @@ -46,14 +46,13 @@ protected: virtual void ieee488_ren(int state) override; // image-level overrides - virtual iodevice_t image_type() const noexcept override { return IO_FLOPPY; } - virtual bool is_readable() const noexcept override { return true; } virtual bool is_writeable() const noexcept override { return true; } 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 false; } virtual const char *file_extensions() const noexcept override { return "img"; } + virtual const char *image_type_name() const noexcept override { return "floppydisk"; } + virtual const char *image_brief_type_name() const noexcept override { return "flop"; } void accept_transfer(); void update_ndac(int atn); @@ -101,7 +100,8 @@ public: grid2101_hdd_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); // image-level overrides - virtual iodevice_t image_type() const noexcept override { return IO_HARDDISK; } + virtual const char *image_type_name() const noexcept override { return "harddisk"; } + virtual const char *image_brief_type_name() const noexcept override { return "hard"; } private: static uint8_t identify_response[]; |