summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/pmd85.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/machine/pmd85.cpp')
-rw-r--r--src/mame/machine/pmd85.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mame/machine/pmd85.cpp b/src/mame/machine/pmd85.cpp
index 4c6ca3896d3..faa9fcf8d73 100644
--- a/src/mame/machine/pmd85.cpp
+++ b/src/mame/machine/pmd85.cpp
@@ -827,5 +827,6 @@ void pmd85_state::machine_reset()
m_startup_mem_map = 1;
(this->*update_memory)();
- m_uart->write_cts(0);
+ if (m_uart)
+ m_uart->write_cts(0);
}