(MESS) ti99: Fixed a copy/paste error, enabling the second UART.

This commit is contained in:
Michael Zapf 2013-07-20 23:28:24 +00:00
parent 9eea7f7093
commit 8027bf36c6

View File

@ -284,7 +284,7 @@ void ti_rs232_pio_device::crureadz(offs_t offset, UINT8 *value)
}
if ((offset & 0x00c0)==0x0080)
{
*value = m_uart[1]->cruread(*m_space, offset>>1, 0xff);
*value = m_uart[1]->cruread(*m_space, offset>>4, 0xff);
return;
}
}