diff options
author | 2016-07-08 16:55:52 -0400 | |
---|---|---|
committer | 2016-07-08 16:55:52 -0400 | |
commit | e720f794816677762e1d35864d6946499faab520 (patch) | |
tree | 9ca63a45e59046a1910f33de15f62fd40ed14d83 /src/mame/drivers/pipbug.cpp | |
parent | aaa3090dd3a40587f3d4cd7ab8016bcd96131e08 (diff) |
Further IRQ passthrough cleanup
- Remove irq_line methods from M6502, M6800, M6809, S2600 and replace uses with DEVCB_INPUTLINE
- Remove a few IRQ passthroughs from spiders.cpp
- Add several aliases for M6800_IRQ_LINE
Diffstat (limited to 'src/mame/drivers/pipbug.cpp')
-rw-r--r-- | src/mame/drivers/pipbug.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/pipbug.cpp b/src/mame/drivers/pipbug.cpp index c6050fb81cf..40bc9788483 100644 --- a/src/mame/drivers/pipbug.cpp +++ b/src/mame/drivers/pipbug.cpp @@ -162,7 +162,7 @@ static MACHINE_CONFIG_START( pipbug, pipbug_state ) /* video hardware */ MCFG_RS232_PORT_ADD("rs232", default_rs232_devices, "terminal") - MCFG_RS232_RXD_HANDLER(DEVWRITELINE("maincpu", s2650_device, write_sense)) + MCFG_RS232_RXD_HANDLER(INPUTLINE("maincpu", S2650_SENSE_LINE)) MCFG_DEVICE_CARD_DEVICE_INPUT_DEFAULTS("terminal", terminal) /* quickload */ |