diff options
Diffstat (limited to 'src/mame/includes')
-rw-r--r-- | src/mame/includes/jaguar.h | 2 | ||||
-rw-r--r-- | src/mame/includes/megadriv.h | 2 | ||||
-rw-r--r-- | src/mame/includes/model1.h | 3 | ||||
-rw-r--r-- | src/mame/includes/taito_l.h | 1 |
4 files changed, 7 insertions, 1 deletions
diff --git a/src/mame/includes/jaguar.h b/src/mame/includes/jaguar.h index 7b044372037..e2f4ace025b 100644 --- a/src/mame/includes/jaguar.h +++ b/src/mame/includes/jaguar.h @@ -214,7 +214,7 @@ public: int quickload(device_image_interface &image, const char *file_type, int quickload_size); void cart_start(); int cart_load(device_image_interface &image); - + IRQ_CALLBACK_MEMBER(jaguar_irq_callback); protected: // timer IDs enum diff --git a/src/mame/includes/megadriv.h b/src/mame/includes/megadriv.h index 708603c1163..5aa60abaf3a 100644 --- a/src/mame/includes/megadriv.h +++ b/src/mame/includes/megadriv.h @@ -121,6 +121,8 @@ public: DECLARE_READ8_MEMBER(megadriv_68k_YM2612_read); DECLARE_WRITE8_MEMBER(megadriv_68k_YM2612_write); + IRQ_CALLBACK_MEMBER(genesis_int_callback); + void megadriv_init_common(); }; class md_boot_state : public md_base_state diff --git a/src/mame/includes/model1.h b/src/mame/includes/model1.h index c400a034caf..fedb0f4c055 100644 --- a/src/mame/includes/model1.h +++ b/src/mame/includes/model1.h @@ -140,6 +140,9 @@ public: UINT32 screen_update_model1(screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect); void screen_eof_model1(screen_device &screen, bool state); TIMER_DEVICE_CALLBACK_MEMBER(model1_interrupt); + void irq_raise(int level); + void irq_init(); + IRQ_CALLBACK_MEMBER(irq_callback); }; diff --git a/src/mame/includes/taito_l.h b/src/mame/includes/taito_l.h index d248a9279b2..26e27b8fea3 100644 --- a/src/mame/includes/taito_l.h +++ b/src/mame/includes/taito_l.h @@ -122,6 +122,7 @@ public: UINT32 screen_update_taitol(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect); void screen_eof_taitol(screen_device &screen, bool state); TIMER_DEVICE_CALLBACK_MEMBER(vbl_interrupt); + IRQ_CALLBACK_MEMBER(irq_callback); }; /*----------- defined in video/taito_l.c -----------*/ |