diff options
Diffstat (limited to 'src/devices/cpu/mips')
-rw-r--r-- | src/devices/cpu/mips/mips3.cpp | 2 | ||||
-rw-r--r-- | src/devices/cpu/mips/mips3.h | 2 | ||||
-rw-r--r-- | src/devices/cpu/mips/r3000.cpp | 2 | ||||
-rw-r--r-- | src/devices/cpu/mips/r3000.h | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/src/devices/cpu/mips/mips3.cpp b/src/devices/cpu/mips/mips3.cpp index 3588db1b888..f4747b7304c 100644 --- a/src/devices/cpu/mips/mips3.cpp +++ b/src/devices/cpu/mips/mips3.cpp @@ -659,7 +659,7 @@ void mips3_device::state_export(const device_state_entry &entry) } -void mips3_device::state_string_export(const device_state_entry &entry, std::string &str) +void mips3_device::state_string_export(const device_state_entry &entry, std::string &str) const { switch (entry.index()) { diff --git a/src/devices/cpu/mips/mips3.h b/src/devices/cpu/mips/mips3.h index c7d2c49fc12..9e0de9ed419 100644 --- a/src/devices/cpu/mips/mips3.h +++ b/src/devices/cpu/mips/mips3.h @@ -303,7 +303,7 @@ protected: // device_state_interface overrides virtual void state_export(const device_state_entry &entry) override; - 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; // device_disasm_interface overrides virtual UINT32 disasm_min_opcode_bytes() const override { return 4; } diff --git a/src/devices/cpu/mips/r3000.cpp b/src/devices/cpu/mips/r3000.cpp index b53afb83d29..f14c6adc93f 100644 --- a/src/devices/cpu/mips/r3000.cpp +++ b/src/devices/cpu/mips/r3000.cpp @@ -443,7 +443,7 @@ void r3000_device::state_export(const device_state_entry &entry) // for the debugger //------------------------------------------------- -void r3000_device::state_string_export(const device_state_entry &entry, std::string &str) +void r3000_device::state_string_export(const device_state_entry &entry, std::string &str) const { switch (entry.index()) { diff --git a/src/devices/cpu/mips/r3000.h b/src/devices/cpu/mips/r3000.h index f9063806cde..a7541eaab85 100644 --- a/src/devices/cpu/mips/r3000.h +++ b/src/devices/cpu/mips/r3000.h @@ -126,7 +126,7 @@ protected: // device_state_interface overrides virtual void state_import(const device_state_entry &entry) override; virtual void state_export(const device_state_entry &entry) override; - 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; // device_disasm_interface overrides virtual UINT32 disasm_min_opcode_bytes() const override; |