diff options
author | 2008-01-08 03:05:19 +0000 | |
---|---|---|
committer | 2008-01-08 03:05:19 +0000 | |
commit | 990bc873d652c51ba4d86269cac33a7d2c4dfced (patch) | |
tree | 8f247009c65ccb08f6baeb8af457e2e77ec29358 /src/mame/drivers/ssozumo.c | |
parent | f57292b93c434b1466f89d425b4286ee93071c9b (diff) |
(From AtariAce)
Added machine and cpunum parameters to INTERRUPT_GEN callbacks.
Fixed several places that were not using INTERRUPT_GEN or OPBASE_HANDLER macros.
Diffstat (limited to 'src/mame/drivers/ssozumo.c')
-rw-r--r-- | src/mame/drivers/ssozumo.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/ssozumo.c b/src/mame/drivers/ssozumo.c index dd97288eed8..4c308fb6d79 100644 --- a/src/mame/drivers/ssozumo.c +++ b/src/mame/drivers/ssozumo.c @@ -38,13 +38,13 @@ static INTERRUPT_GEN( ssozumo_interrupt ) if (coin == 0) { coin = 1; - nmi_line_pulse(); + nmi_line_pulse(machine, cpunum); return; } } else coin = 0; - irq0_line_hold(); + irq0_line_hold(machine, cpunum); } |