summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/segahang.h
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2013-01-11 07:32:46 +0000
committer Miodrag Milanovic <mmicko@gmail.com>2013-01-11 07:32:46 +0000
commit0e19f641d3186cdbf51f8ca857e2b07ab95779c2 (patch)
tree234109de1123b13f217494af4b3f8efad346d5cc /src/mame/includes/segahang.h
parent111157ca09a9ff60fe4a9ba49173c315e94314fa (diff)
Cleanups and version bumpmame0148
Diffstat (limited to 'src/mame/includes/segahang.h')
-rw-r--r--src/mame/includes/segahang.h28
1 files changed, 14 insertions, 14 deletions
diff --git a/src/mame/includes/segahang.h b/src/mame/includes/segahang.h
index 98ee042290d..fa9ee2d0b5c 100644
--- a/src/mame/includes/segahang.h
+++ b/src/mame/includes/segahang.h
@@ -52,16 +52,16 @@ public:
// construction/destruction
segahang_state(const machine_config &mconfig, device_type type, const char *tag)
: sega_16bit_common_base(mconfig, type, tag),
- m_maincpu(*this, "maincpu"),
- m_subcpu(*this, "subcpu"),
- m_soundcpu(*this, "soundcpu"),
- m_mcu(*this, "mcu"),
- m_i8255_1(*this, "i8255_1"),
- m_i8255_2(*this, "i8255_2"),
- m_sprites(*this, "sprites"),
- m_workram(*this, "workram"),
- m_sharrier_video(false),
- m_adc_select(0)
+ m_maincpu(*this, "maincpu"),
+ m_subcpu(*this, "subcpu"),
+ m_soundcpu(*this, "soundcpu"),
+ m_mcu(*this, "mcu"),
+ m_i8255_1(*this, "i8255_1"),
+ m_i8255_2(*this, "i8255_2"),
+ m_sprites(*this, "sprites"),
+ m_workram(*this, "workram"),
+ m_sharrier_video(false),
+ m_adc_select(0)
{ }
// PPI read/write callbacks
@@ -125,11 +125,11 @@ protected:
required_shared_ptr<UINT16> m_workram;
// configuration
- bool m_sharrier_video;
- i8751_sim_delegate m_i8751_vblank_hook;
+ bool m_sharrier_video;
+ i8751_sim_delegate m_i8751_vblank_hook;
// internal state
- UINT8 m_adc_select;
- bool m_shadow;
+ UINT8 m_adc_select;
+ bool m_shadow;
TIMER_DEVICE_CALLBACK_MEMBER(hangon_irq);
};