From af462859c2b9a572452f7d9ae50eddf6dea3ec24 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Oliver=20St=C3=B6neberg?= Date: Tue, 16 Jul 2013 11:41:28 +0000 Subject: [PATCH] added comments to diexec.h (nw) --- src/emu/diexec.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/emu/diexec.h b/src/emu/diexec.h index 3b82da24d72..98be547335b 100644 --- a/src/emu/diexec.h +++ b/src/emu/diexec.h @@ -140,11 +140,11 @@ class screen_device; // interrupt callback for VBLANK and timed interrupts typedef device_delegate device_interrupt_delegate; -typedef void (*device_interrupt_func)(device_t *device); +typedef void (*device_interrupt_func)(device_t *device); // legacy // IRQ callback to be called by executing devices when an IRQ is actually taken typedef device_delegate device_irq_acknowledge_delegate; -typedef int (*device_irq_acknowledge_callback)(device_t *device, int irqnum); +typedef int (*device_irq_acknowledge_callback)(device_t *device, int irqnum); // legacy @@ -174,9 +174,9 @@ public: // static inline configuration helpers static void static_set_disable(device_t &device); - static void static_set_vblank_int(device_t &device, device_interrupt_func function, const char *tag, int rate = 0); + static void static_set_vblank_int(device_t &device, device_interrupt_func function, const char *tag, int rate = 0); // legacy static void static_set_vblank_int(device_t &device, device_interrupt_delegate function, const char *tag, int rate = 0); - static void static_set_periodic_int(device_t &device, device_interrupt_func function, attotime rate); + static void static_set_periodic_int(device_t &device, device_interrupt_func function, attotime rate); // legacy static void static_set_periodic_int(device_t &device, device_interrupt_delegate function, attotime rate); // execution management @@ -191,7 +191,7 @@ public: void set_input_line_vector(int linenum, int vector) { m_input[linenum].set_vector(vector); } void set_input_line_and_vector(int linenum, int state, int vector) { m_input[linenum].set_state_synced(state, vector); } int input_state(int linenum) { return m_input[linenum].m_curstate; } - void set_irq_acknowledge_callback(device_irq_acknowledge_callback callback); + void set_irq_acknowledge_callback(device_irq_acknowledge_callback callback); // legacy void set_irq_acknowledge_callback(device_irq_acknowledge_delegate callback); // suspend/resume