summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/ms0515.cpp
diff options
context:
space:
mode:
author David Haywood <hazemamewip@hotmail.com>2018-06-30 05:21:17 +0100
committer ajrhacker <ajrhacker@users.noreply.github.com>2018-06-30 00:21:17 -0400
commit2b0eec6adfa7a4904646056ce4290835a68c5e5e (patch)
treed6a2357c20b6ff0ec2b14f858a6f70cfcefd997c /src/mame/drivers/ms0515.cpp
parentb77a01d309e86c526a15a6c8f186436c67736561 (diff)
more private: use (K,L,M) (#3714)
Diffstat (limited to 'src/mame/drivers/ms0515.cpp')
-rw-r--r--src/mame/drivers/ms0515.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/mame/drivers/ms0515.cpp b/src/mame/drivers/ms0515.cpp
index 4f477cf1354..975bddfa8ef 100644
--- a/src/mame/drivers/ms0515.cpp
+++ b/src/mame/drivers/ms0515.cpp
@@ -78,6 +78,9 @@ public:
, m_speaker(*this, "speaker")
{ }
+ void ms0515(machine_config &config);
+
+private:
DECLARE_PALETTE_INIT(ms0515);
uint32_t screen_update_ms0515(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
DECLARE_WRITE_LINE_MEMBER(screen_vblank);
@@ -103,9 +106,8 @@ public:
DECLARE_WRITE_LINE_MEMBER(irq9_w);
DECLARE_WRITE_LINE_MEMBER(irq11_w);
- void ms0515(machine_config &config);
void ms0515_mem(address_map &map);
-protected:
+
virtual void machine_reset() override;
void irq_encoder(int irq, int state);
@@ -122,7 +124,6 @@ protected:
required_device<pit8253_device> m_pit8253;
required_device<speaker_sound_device> m_speaker;
-private:
uint8_t *m_video_ram;
uint8_t m_sysrega, m_sysregc;
uint16_t m_bankreg, m_haltreg;