diff options
Diffstat (limited to 'src/devices/machine/6821pia.cpp')
-rw-r--r-- | src/devices/machine/6821pia.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/machine/6821pia.cpp b/src/devices/machine/6821pia.cpp index cd69790cb03..169dfa1c604 100644 --- a/src/devices/machine/6821pia.cpp +++ b/src/devices/machine/6821pia.cpp @@ -229,7 +229,7 @@ uint8_t pia6821_device::get_in_a_value() port_a_data = 0xff; if (!m_logged_port_a_not_connected && (m_ddr_a != 0xff) && - !machine().side_effects_disabled()) + !machine().side_effects_disabled()) { logerror("Warning! No port A read handler. Assuming pins 0x%02X not connected\n", m_ddr_a ^ 0xff); m_logged_port_a_not_connected = true; @@ -279,7 +279,7 @@ uint8_t pia6821_device::get_in_b_value() else { if (!m_logged_port_b_not_connected && (m_ddr_b != 0xff) - && !machine().side_effects_disabled()) + && !machine().side_effects_disabled()) { logerror("Error! No port B read handler. Three-state pins 0x%02X are undefined\n", m_ddr_b ^ 0xff); m_logged_port_b_not_connected = true; |