mirror of
https://github.com/holub/mame
synced 2025-07-06 18:39:28 +03:00
nuke some tag lookups in prose2k (nw)
This commit is contained in:
parent
4e3ca74170
commit
fea09343fb
@ -132,23 +132,22 @@
|
||||
*****************************************************************************/
|
||||
WRITE_LINE_MEMBER(tsispch_state::i8251_rxrdy_int)
|
||||
{
|
||||
machine().device<pic8259_device>("pic8259")->ir1_w(state);
|
||||
m_pic->ir1_w(state);
|
||||
}
|
||||
|
||||
WRITE_LINE_MEMBER(tsispch_state::i8251_txempty_int)
|
||||
{
|
||||
machine().device<pic8259_device>("pic8259")->ir2_w(state);
|
||||
m_pic->ir2_w(state);
|
||||
}
|
||||
|
||||
WRITE_LINE_MEMBER(tsispch_state::i8251_txrdy_int)
|
||||
{
|
||||
machine().device<pic8259_device>("pic8259")->ir3_w(state);
|
||||
m_pic->ir3_w(state);
|
||||
}
|
||||
|
||||
WRITE8_MEMBER( tsispch_state::i8251_rxd )
|
||||
{
|
||||
i8251_device *uart = machine().device<i8251_device>("i8251a_u15");
|
||||
uart->receive_character(data);
|
||||
m_uart->receive_character(data);
|
||||
}
|
||||
|
||||
/*****************************************************************************
|
||||
|
Loading…
Reference in New Issue
Block a user