diff options
author | 2012-09-12 06:07:51 +0000 | |
---|---|---|
committer | 2012-09-12 06:07:51 +0000 | |
commit | 17e66e39fd2aeb6e083a8567d281df9235b9f2f4 (patch) | |
tree | a34dfe5941829bc939167c207f65b5cf7f57078f /src/emu/cpu/sh4/sh4comn.c | |
parent | 0ef1e6deb4923b27f4c1d95825e453f565b129a3 (diff) |
Clear out remaining global inlines in diexec.h.
Diffstat (limited to 'src/emu/cpu/sh4/sh4comn.c')
-rw-r--r-- | src/emu/cpu/sh4/sh4comn.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/cpu/sh4/sh4comn.c b/src/emu/cpu/sh4/sh4comn.c index 8776cd38520..a159dc48bba 100644 --- a/src/emu/cpu/sh4/sh4comn.c +++ b/src/emu/cpu/sh4/sh4comn.c @@ -1041,8 +1041,8 @@ void sh4_set_irln_input(device_t *device, int value) if (sh4->irln == value) return; sh4->irln = value; - device_set_input_line(device, SH4_IRLn, ASSERT_LINE); - device_set_input_line(device, SH4_IRLn, CLEAR_LINE); + device->execute().set_input_line(SH4_IRLn, ASSERT_LINE); + device->execute().set_input_line(SH4_IRLn, CLEAR_LINE); } void sh4_set_irq_line(sh4_state *sh4, int irqline, int state) // set state of external interrupt line |