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.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/devices/imagedev/bitbngr.h b/src/devices/imagedev/bitbngr.h
index 19cbea3bc09..7ffcfd45a2b 100644
--- a/src/devices/imagedev/bitbngr.h
+++ b/src/devices/imagedev/bitbngr.h
@@ -39,10 +39,15 @@ public:
uint32_t input(void *buffer, uint32_t length);
protected:
- // device-level overrides
+ // device_t implementation
virtual void device_start() override;
+ // device_image_interface implementation
+ virtual software_list_loader const &get_software_list_loader() const override;
+
private:
+ uint8_t const *m_next;
+ uint8_t const *m_end;
char const *m_interface;
bool m_is_readonly;
};