diff options
Diffstat (limited to 'src/devices/cpu/melps4')
-rw-r--r-- | src/devices/cpu/melps4/melps4.cpp | 2 | ||||
-rw-r--r-- | src/devices/cpu/melps4/melps4.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/cpu/melps4/melps4.cpp b/src/devices/cpu/melps4/melps4.cpp index 7a3653dfe96..d228b42fbee 100644 --- a/src/devices/cpu/melps4/melps4.cpp +++ b/src/devices/cpu/melps4/melps4.cpp @@ -42,7 +42,7 @@ // disasm -void melps4_cpu_device::state_string_export(const device_state_entry &entry, std::string &str) +void melps4_cpu_device::state_string_export(const device_state_entry &entry, std::string &str) const { switch (entry.index()) { diff --git a/src/devices/cpu/melps4/melps4.h b/src/devices/cpu/melps4/melps4.h index 2d80cfcf8d2..b0aa67fd6d4 100644 --- a/src/devices/cpu/melps4/melps4.h +++ b/src/devices/cpu/melps4/melps4.h @@ -160,7 +160,7 @@ protected: // device_disasm_interface overrides virtual UINT32 disasm_min_opcode_bytes() const override { return 2; } virtual UINT32 disasm_max_opcode_bytes() const override { return 2; } - virtual void state_string_export(const device_state_entry &entry, std::string &str) override; + virtual void state_string_export(const device_state_entry &entry, std::string &str) const override; address_space_config m_program_config; address_space_config m_data_config; |