diff options
Diffstat (limited to 'src/devices/cpu/lh5801')
-rw-r--r-- | src/devices/cpu/lh5801/lh5801.cpp | 2 | ||||
-rw-r--r-- | src/devices/cpu/lh5801/lh5801.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/cpu/lh5801/lh5801.cpp b/src/devices/cpu/lh5801/lh5801.cpp index 2e748c63905..0287e0d0859 100644 --- a/src/devices/cpu/lh5801/lh5801.cpp +++ b/src/devices/cpu/lh5801/lh5801.cpp @@ -142,7 +142,7 @@ void lh5801_cpu_device::device_start() m_icountptr = &m_icount; } -void lh5801_cpu_device::state_string_export(const device_state_entry &entry, std::string &str) const +void lh5801_cpu_device::state_string_export(const device_state_entry &entry, std::string &str) { switch (entry.index()) { diff --git a/src/devices/cpu/lh5801/lh5801.h b/src/devices/cpu/lh5801/lh5801.h index fe6f3c44f63..fd28df91ae0 100644 --- a/src/devices/cpu/lh5801/lh5801.h +++ b/src/devices/cpu/lh5801/lh5801.h @@ -90,7 +90,7 @@ protected: virtual const address_space_config *memory_space_config(address_spacenum spacenum = AS_0) const override { return (spacenum == AS_PROGRAM) ? &m_program_config : ( (spacenum == AS_IO) ? &m_io_config : nullptr ); } // device_state_interface overrides - virtual void state_string_export(const device_state_entry &entry, std::string &str) const override; + virtual void state_string_export(const device_state_entry &entry, std::string &str) override; // device_disasm_interface overrides virtual UINT32 disasm_min_opcode_bytes() const override { return 1; } |