diff options
author | 2013-01-31 12:47:07 +0000 | |
---|---|---|
committer | 2013-01-31 12:47:07 +0000 | |
commit | bfb62eeb19e35530246307a08d3c315f9fdd3df4 (patch) | |
tree | 9c2912a3c57ad251958bf901012626e3d3a947c0 /src/mess/machine/i82371ab.c | |
parent | f63dc9ba6597a6b0b4fc0ab906637a85f43a50cf (diff) |
IRQ_CALLBACK modernization part 2, this should give some speed to pc drivers (no whatsnew)
Diffstat (limited to 'src/mess/machine/i82371ab.c')
-rw-r--r-- | src/mess/machine/i82371ab.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/mess/machine/i82371ab.c b/src/mess/machine/i82371ab.c index 30bc73d49a4..53b12a2f43f 100644 --- a/src/mess/machine/i82371ab.c +++ b/src/mess/machine/i82371ab.c @@ -208,12 +208,6 @@ void i82371ab_device::pci_write(pci_bus_device *pcibus, int function, int offset } } -static IRQ_CALLBACK(at_irq_callback) -{ - device_t *pic = device->machine().device(":pcibus:1:i82371ab:pic8259_master"); - return pic8259_acknowledge(pic); -} - //------------------------------------------------- // device_start - device-specific startup //------------------------------------------------- @@ -223,8 +217,6 @@ void i82371ab_device::device_start() southbridge_device::device_start(); /* setup save states */ save_item(NAME(m_regs)); - - machine().device(":maincpu")->execute().set_irq_acknowledge_callback(at_irq_callback); } //------------------------------------------------- |