summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/ql/rom.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/ql/rom.h')
-rw-r--r--src/devices/bus/ql/rom.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/devices/bus/ql/rom.h b/src/devices/bus/ql/rom.h
index de2a680b2b0..4b79406aca9 100644
--- a/src/devices/bus/ql/rom.h
+++ b/src/devices/bus/ql/rom.h
@@ -99,15 +99,15 @@ protected:
virtual image_init_result call_load() 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 bool is_readable() const override { return 1; }
- virtual bool is_writeable() const override { return 0; }
- virtual bool is_creatable() const override { return 0; }
- virtual bool must_be_loaded() const override { return 0; }
- virtual bool is_reset_on_load() const override { return 1; }
- virtual const char *image_interface() const override { return "ql_cart"; }
- virtual const char *file_extensions() const override { return "rom,bin"; }
+ 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 "ql_cart"; }
+ virtual const char *file_extensions() const noexcept override { return "rom,bin"; }
// slot interface overrides
virtual std::string get_default_card_software(get_default_card_software_hook &hook) const override;