summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/apexc.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/machine/apexc.h')
-rw-r--r--src/mame/machine/apexc.h44
1 files changed, 22 insertions, 22 deletions
diff --git a/src/mame/machine/apexc.h b/src/mame/machine/apexc.h
index 8d1d9587a2d..8d2ba5f59d5 100644
--- a/src/mame/machine/apexc.h
+++ b/src/mame/machine/apexc.h
@@ -32,14 +32,14 @@ public:
apexc_cylinder_image_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock = 0);
// image-level overrides
- virtual iodevice_t image_type() const override { return IO_CYLINDER; }
+ virtual iodevice_t image_type() const noexcept override { return IO_CYLINDER; }
- virtual bool is_readable() const override { return true; }
- virtual bool is_writeable() const override { return true; }
- virtual bool is_creatable() const override { return false; }
- virtual bool must_be_loaded() const override { return false; }
- virtual bool is_reset_on_load() const override { return true; }
- virtual const char *file_extensions() const override { return "apc"; }
+ 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 true; }
+ virtual const char *file_extensions() const noexcept override { return "apc"; }
virtual image_init_result call_load() override;
virtual void call_unload() override;
@@ -102,14 +102,14 @@ public:
apexc_tape_puncher_image_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock = 0);
// image-level overrides
- virtual iodevice_t image_type() const override { return IO_PUNCHTAPE; }
+ virtual iodevice_t image_type() const noexcept override { return IO_PUNCHTAPE; }
- virtual bool is_readable() const override { return false; }
- virtual bool is_writeable() const override { return true; }
- virtual bool is_creatable() const override { return true; }
- virtual bool must_be_loaded() const override { return false; }
- virtual bool is_reset_on_load() const override { return false; }
- virtual const char *file_extensions() const override { return "tap"; }
+ virtual bool is_readable() const noexcept override { return false; }
+ virtual bool is_writeable() const noexcept override { return true; }
+ virtual bool is_creatable() const noexcept override { return true; }
+ 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 "tap"; }
DECLARE_WRITE8_MEMBER(write);
@@ -129,14 +129,14 @@ public:
apexc_tape_reader_image_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
// image-level overrides
- virtual iodevice_t image_type() const override { return IO_PUNCHTAPE; }
-
- virtual bool is_readable() const override { return true; }
- virtual bool is_writeable() const override { return false; }
- virtual bool is_creatable() const override { return false; }
- virtual bool must_be_loaded() const override { return false; }
- virtual bool is_reset_on_load() const override { return false; }
- virtual const char *file_extensions() const override { return "tap"; }
+ virtual iodevice_t image_type() const noexcept override { return IO_PUNCHTAPE; }
+
+ 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 false; }
+ virtual const char *file_extensions() const noexcept override { return "tap"; }
DECLARE_READ8_MEMBER(read);
private: