diff options
Diffstat (limited to 'src/devices/cpu/tms0980/tms0980.cpp')
-rw-r--r-- | src/devices/cpu/tms0980/tms0980.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/cpu/tms0980/tms0980.cpp b/src/devices/cpu/tms0980/tms0980.cpp index e487564ef23..3cb9f2a0800 100644 --- a/src/devices/cpu/tms0980/tms0980.cpp +++ b/src/devices/cpu/tms0980/tms0980.cpp @@ -887,7 +887,7 @@ void tms0980_cpu_device::read_opcode() void tms1xxx_cpu_device::write_o_output(UINT8 index) { // a hardcoded table is supported if the output pla is unknown - m_o = (m_output_pla_table == NULL) ? m_opla->read(index) : m_output_pla_table[index]; + m_o = (m_output_pla_table == nullptr) ? m_opla->read(index) : m_output_pla_table[index]; m_write_o(0, m_o & m_o_mask, 0xffff); } |