summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/hp48_port.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/machine/hp48_port.h')
-rw-r--r--src/mame/machine/hp48_port.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/mame/machine/hp48_port.h b/src/mame/machine/hp48_port.h
index b50bb8ae3bb..887c702910a 100644
--- a/src/mame/machine/hp48_port.h
+++ b/src/mame/machine/hp48_port.h
@@ -35,16 +35,16 @@ public:
}
// image-level overrides
- virtual iodevice_t image_type() const override { return IO_MEMCARD; }
-
- virtual bool is_readable() const override { return 1; }
- virtual bool is_writeable() const override { return 1; }
- virtual bool is_creatable() const override { return 1; }
- virtual bool must_be_loaded() const override { return 0; }
- virtual bool is_reset_on_load() const override { return 0; }
- virtual const char *file_extensions() const override { return "crd"; }
- virtual const char *custom_instance_name() const override { return "port"; }
- virtual const char *custom_brief_instance_name() const override { return "p"; }
+ virtual iodevice_t image_type() const noexcept override { return IO_MEMCARD; }
+
+ 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 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 "crd"; }
+ virtual const char *custom_instance_name() const noexcept override { return "port"; }
+ virtual const char *custom_brief_instance_name() const noexcept override { return "p"; }
virtual image_init_result call_load() override;
virtual void call_unload() override;