diff options
Diffstat (limited to 'src/devices/machine/jvsdev.h')
-rw-r--r-- | src/devices/machine/jvsdev.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/machine/jvsdev.h b/src/devices/machine/jvsdev.h index 7a93b3ead04..410407b501c 100644 --- a/src/devices/machine/jvsdev.h +++ b/src/devices/machine/jvsdev.h @@ -22,8 +22,8 @@ protected: jvs_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, uint32_t clock); // device-level overrides - virtual void device_start() override; - virtual void device_reset() override; + virtual void device_start() override ATTR_COLD; + virtual void device_reset() override ATTR_COLD; // JVS device overrides virtual const char *device_id(); @@ -37,6 +37,7 @@ protected: virtual bool analogs(uint8_t *&buf, uint8_t count); virtual bool swoutputs(uint8_t count, const uint8_t *vals); virtual bool swoutputs(uint8_t id, uint8_t val); + virtual int handle_message(const uint8_t *send_buffer, uint32_t send_size, uint8_t *&recv_buffer); required_device<jvs_host> host; @@ -45,7 +46,6 @@ private: uint8_t jvs_address; uint32_t jvs_reset_counter; - int handle_message(const uint8_t *send_buffer, uint32_t send_size, uint8_t *&recv_buffer); }; #endif // MAME_MACHINE_JVSDEV_H |