diff options
Diffstat (limited to 'src/devices/cpu/8x300')
-rw-r--r-- | src/devices/cpu/8x300/8x300.cpp | 2 | ||||
-rw-r--r-- | src/devices/cpu/8x300/8x300.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/cpu/8x300/8x300.cpp b/src/devices/cpu/8x300/8x300.cpp index ae1fa8bb906..a18f4d50c73 100644 --- a/src/devices/cpu/8x300/8x300.cpp +++ b/src/devices/cpu/8x300/8x300.cpp @@ -145,7 +145,7 @@ void n8x300_cpu_device::device_start() m_icountptr = &m_icount; } -void n8x300_cpu_device::state_string_export(const device_state_entry &entry, std::string &str) +void n8x300_cpu_device::state_string_export(const device_state_entry &entry, std::string &str) const { switch (entry.index()) { diff --git a/src/devices/cpu/8x300/8x300.h b/src/devices/cpu/8x300/8x300.h index b3ad75f2654..dd236372e5d 100644 --- a/src/devices/cpu/8x300/8x300.h +++ b/src/devices/cpu/8x300/8x300.h @@ -66,7 +66,7 @@ protected: } // device_state_interface overrides - 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 2; } |