diff options
author | 2013-02-11 07:44:56 +0000 | |
---|---|---|
committer | 2013-02-11 07:44:56 +0000 | |
commit | a440a8e0200a36491ae540f6f00beae59c148549 (patch) | |
tree | b4c31ebadaa2857396c37178674086420bf1658f /src/mess/includes/gb.h | |
parent | 4b0b4e6b2fa7eb5105859f561354662d479f53be (diff) |
Cleanups and version bumpmame0148u1
Diffstat (limited to 'src/mess/includes/gb.h')
-rw-r--r-- | src/mess/includes/gb.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mess/includes/gb.h b/src/mess/includes/gb.h index 185ba6c486a..391c05059d3 100644 --- a/src/mess/includes/gb.h +++ b/src/mess/includes/gb.h @@ -157,7 +157,7 @@ public: UINT8 *m_GBC_RAMMap[8]; /* (CGB) Addresses of internal RAM banks */ UINT8 m_GBC_RAMBank; /* (CGB) Current CGB RAM bank */ - + gb_lcd_t m_lcd; void (gb_state::*update_scanline) (); bool m_bios_disable; @@ -240,7 +240,7 @@ public: , m_maincpu(*this, "maincpu") , m_inputs(*this, "INPUTS") { } - + DECLARE_READ8_MEMBER(megaduck_video_r); DECLARE_WRITE8_MEMBER(megaduck_video_w); DECLARE_WRITE8_MEMBER(megaduck_sound_w1); @@ -250,12 +250,12 @@ public: DECLARE_MACHINE_START(megaduck); DECLARE_MACHINE_RESET(megaduck); DECLARE_PALETTE_INIT(megaduck); - + DECLARE_READ8_MEMBER(cart_r); DECLARE_WRITE8_MEMBER(bank1_w); DECLARE_WRITE8_MEMBER(bank2_w); optional_device<megaduck_cart_slot_device> m_cartslot; - + protected: required_device<lr35902_cpu_device> m_maincpu; required_ioport m_inputs; |