summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/tms9900/tms9900.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/cpu/tms9900/tms9900.cpp')
-rw-r--r--src/devices/cpu/tms9900/tms9900.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/cpu/tms9900/tms9900.cpp b/src/devices/cpu/tms9900/tms9900.cpp
index 61ee5644d7f..8f092a3159d 100644
--- a/src/devices/cpu/tms9900/tms9900.cpp
+++ b/src/devices/cpu/tms9900/tms9900.cpp
@@ -328,7 +328,7 @@ void tms99xx_device::device_reset()
m_irq_state = false;
}
-const char* tms99xx_device::s_statename[20] =
+char const *const tms99xx_device::s_statename[20] =
{
"PC", "WP", "ST", "IR",
"R0", "R1", "R2", "R3",
@@ -405,7 +405,7 @@ void tms99xx_device::state_export(const device_state_entry &entry)
*/
void tms99xx_device::state_string_export(const device_state_entry &entry, std::string &str) const
{
- static const char *statestr = "LAECOPX-----IIII";
+ static char const statestr[] = "LAECOPX-----IIII";
char flags[17];
for (auto &flag : flags) flag = 0x00;
uint16_t val = 0x8000;