summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/cpu/h6280
diff options
context:
space:
mode:
author Aaron Giles <aaron@aarongiles.com>2012-04-10 20:13:30 +0000
committer Aaron Giles <aaron@aarongiles.com>2012-04-10 20:13:30 +0000
commit53aca4fb0c68196bf794a34159114b8bafcd1bd1 (patch)
tree1596e7a64ea6d3dc3ed5a3715b9b4fdb253c9a69 /src/emu/cpu/h6280
parent0f648fa34aec6f0ee1c7e7f64902d0ae09357243 (diff)
Renamed device_irq_callback to device_irq_acknowledge_callback to
make its purpose clearer. Added delegate support for interrupt callbacks, and made driver_device variants of the generic interrupt helper callbacks. Did not convert existing callers yet due to logistical issues.
Diffstat (limited to 'src/emu/cpu/h6280')
-rw-r--r--src/emu/cpu/h6280/h6280.c2
-rw-r--r--src/emu/cpu/h6280/h6280.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/cpu/h6280/h6280.c b/src/emu/cpu/h6280/h6280.c
index 24f918c8b4e..abfe79be6eb 100644
--- a/src/emu/cpu/h6280/h6280.c
+++ b/src/emu/cpu/h6280/h6280.c
@@ -170,7 +170,7 @@ static CPU_RESET( h6280 )
{
h6280_Regs* cpustate = get_safe_token(device);
- device_irq_callback save_irqcallback;
+ device_irq_acknowledge_callback save_irqcallback;
int i;
/* wipe out the h6280 structure */
diff --git a/src/emu/cpu/h6280/h6280.h b/src/emu/cpu/h6280/h6280.h
index 568d5b9a3d5..fe1a2f4e686 100644
--- a/src/emu/cpu/h6280/h6280.h
+++ b/src/emu/cpu/h6280/h6280.h
@@ -60,7 +60,7 @@ typedef struct
UINT8 nmi_state;
UINT8 irq_state[3];
UINT8 irq_pending;
- device_irq_callback irq_callback;
+ device_irq_acknowledge_callback irq_callback;
legacy_cpu_device *device;
address_space *program;
direct_read_data *direct;