summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/imagedev/bitbngr.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/imagedev/bitbngr.h')
-rw-r--r--src/devices/imagedev/bitbngr.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/devices/imagedev/bitbngr.h b/src/devices/imagedev/bitbngr.h
index 2a2a72dd9a6..ad9e45e1d86 100644
--- a/src/devices/imagedev/bitbngr.h
+++ b/src/devices/imagedev/bitbngr.h
@@ -25,16 +25,16 @@ public:
virtual void call_unload() override;
// image device
- virtual iodevice_t image_type() const override { return IO_SERIAL; }
- virtual bool is_readable() const override { return 1; }
- virtual bool is_writeable() const override { return !m_is_readonly; }
- virtual bool is_creatable() const override { return !m_is_readonly; }
- virtual bool must_be_loaded() const override { return 0; }
- virtual bool is_reset_on_load() const override { return 0; }
- virtual const char *image_interface() const override { return m_interface; }
- virtual const char *file_extensions() const override { return ""; }
- virtual const char *custom_instance_name() const override { return "bitbanger"; }
- virtual const char *custom_brief_instance_name() const override { return "bitb"; }
+ virtual iodevice_t image_type() const noexcept override { return IO_SERIAL; }
+ virtual bool is_readable() const noexcept override { return true; }
+ virtual bool is_writeable() const noexcept override { return !m_is_readonly; }
+ virtual bool is_creatable() const noexcept override { return !m_is_readonly; }
+ virtual bool must_be_loaded() const noexcept override { return false; }
+ virtual bool is_reset_on_load() const noexcept override { return false; }
+ virtual const char *image_interface() const noexcept override { return m_interface; }
+ virtual const char *file_extensions() const noexcept override { return ""; }
+ virtual const char *custom_instance_name() const noexcept override { return "bitbanger"; }
+ virtual const char *custom_brief_instance_name() const noexcept override { return "bitb"; }
void output(uint8_t data);
uint32_t input(void *buffer, uint32_t length);