summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/mpu4.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/mpu4.h')
-rw-r--r--src/mame/includes/mpu4.h45
1 files changed, 37 insertions, 8 deletions
diff --git a/src/mame/includes/mpu4.h b/src/mame/includes/mpu4.h
index ec7a0396b78..4d3dae267f5 100644
--- a/src/mame/includes/mpu4.h
+++ b/src/mame/includes/mpu4.h
@@ -259,6 +259,43 @@ public:
DECLARE_WRITE_LINE_MEMBER(reel5_optic_cb) { if (state) m_optic_pattern |= 0x20; else m_optic_pattern &= ~0x20; }
DECLARE_WRITE_LINE_MEMBER(reel6_optic_cb) { if (state) m_optic_pattern |= 0x40; else m_optic_pattern &= ~0x40; }
DECLARE_WRITE_LINE_MEMBER(reel7_optic_cb) { if (state) m_optic_pattern |= 0x80; else m_optic_pattern &= ~0x80; }
+ void bwboki(machine_config &config);
+ void mod2(machine_config &config);
+ void mod2_alt(machine_config &config);
+ void mod4oki(machine_config &config);
+ void mod4oki_5r(machine_config &config);
+ void mod4oki_alt(machine_config &config);
+ void mod4yam(machine_config &config);
+ void mpu4_common(machine_config &config);
+ void mpu4_common2(machine_config &config);
+ void mpu4crys(machine_config &config);
+ void mpu4_std_3reel(machine_config &config);
+ void mpu4_type2_3reel(machine_config &config);
+ void mpu4_type3_3reel(machine_config &config);
+ void mpu4_type4_3reel(machine_config &config);
+ void mpu4_bwb_3reel(machine_config &config);
+ void mpu4_std_4reel(machine_config &config);
+ void mpu4_type2_4reel(machine_config &config);
+ void mpu4_type3_4reel(machine_config &config);
+ void mpu4_type4_4reel(machine_config &config);
+ void mpu4_bwb_4reel(machine_config &config);
+ void mpu4_std_5reel(machine_config &config);
+ void mpu4_type2_5reel(machine_config &config);
+ void mpu4_type3_5reel(machine_config &config);
+ void mpu4_type4_5reel(machine_config &config);
+ void mpu4_bwb_5reel(machine_config &config);
+ void mpu4_std_6reel(machine_config &config);
+ void mpu4_type2_6reel(machine_config &config);
+ void mpu4_type3_6reel(machine_config &config);
+ void mpu4_type4_6reel(machine_config &config);
+ void mpu4_bwb_6reel(machine_config &config);
+ void mpu4_std_7reel(machine_config &config);
+ void mpu4_type2_7reel(machine_config &config);
+ void mpu4_type3_7reel(machine_config &config);
+ void mpu4_type4_7reel(machine_config &config);
+ void mpu4_bwb_7reel(machine_config &config);
+ void mpu4base(machine_config &config);
+
protected:
virtual void device_timer(emu_timer &timer, device_timer_id id, int param, void *ptr) override;
@@ -369,12 +406,4 @@ protected:
const bwb_chr_table* m_bwb_chr_table1;
};
-MACHINE_CONFIG_EXTERN( mpu4_common );
-MACHINE_CONFIG_EXTERN( mpu4_common2 );
-
-MACHINE_CONFIG_EXTERN( mod2 );
-MACHINE_CONFIG_EXTERN( mod4oki_alt );
-MACHINE_CONFIG_EXTERN( mod4oki_5r );
-MACHINE_CONFIG_EXTERN( mod2_alt );
-
INPUT_PORTS_EXTERN( mpu4 );