diff options
author | 2013-05-18 19:19:04 +0000 | |
---|---|---|
committer | 2013-05-18 19:19:04 +0000 | |
commit | b52aa647b8753d72a9e7c907b048646c988fbe8a (patch) | |
tree | fb12681dcc6e1d80ed7a66fa8b50b6da34bd976a /src/mess/machine | |
parent | 5f3a093b4d0b7d1b42bb556f50d819ccc858f692 (diff) |
genpc: fix xt (nw)
Diffstat (limited to 'src/mess/machine')
-rw-r--r-- | src/mess/machine/genpc.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/mess/machine/genpc.c b/src/mess/machine/genpc.c index f64545e45ac..d4d84dd4df2 100644 --- a/src/mess/machine/genpc.c +++ b/src/mess/machine/genpc.c @@ -186,10 +186,6 @@ I8237_INTERFACE( pc_dma8237_config ) * pic8259 configuration * *************************************************************/ -WRITE_LINE_MEMBER(ibm5160_mb_device::pc_cpu_line) -{ - m_maincpu->set_input_line(INPUT_LINE_IRQ0, state); -} WRITE_LINE_MEMBER(ibm5160_mb_device::pc_speaker_set_spkrdata) { @@ -473,7 +469,7 @@ static MACHINE_CONFIG_FRAGMENT( ibm5160_mb_config ) MCFG_I8237_ADD( "dma8237", XTAL_14_31818MHz/3, pc_dma8237_config ) - MCFG_PIC8259_ADD( "pic8259", DEVWRITELINE(DEVICE_SELF_OWNER, ibm5160_mb_device, pc_cpu_line), VCC, NULL ) + MCFG_PIC8259_ADD( "pic8259", INPUTLINE(":maincpu", 0), VCC, NULL ) MCFG_I8255A_ADD( "ppi8255", pc_ppi8255_interface ) |