summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/hprot1.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/hprot1.cpp')
-rw-r--r--src/mame/drivers/hprot1.cpp13
1 files changed, 8 insertions, 5 deletions
diff --git a/src/mame/drivers/hprot1.cpp b/src/mame/drivers/hprot1.cpp
index 3eb700da6c6..84787c7c89c 100644
--- a/src/mame/drivers/hprot1.cpp
+++ b/src/mame/drivers/hprot1.cpp
@@ -73,17 +73,20 @@ public:
, m_lcdc(*this, "hd44780")
{ }
+ void hprotr8a(machine_config &config);
+ void hprot2r6(machine_config &config);
+ void hprot1(machine_config &config);
+
+ void init_hprot1();
+
+private:
DECLARE_WRITE8_MEMBER(henry_p1_w);
DECLARE_WRITE8_MEMBER(henry_p3_w);
- void init_hprot1();
DECLARE_PALETTE_INIT(hprot1);
HD44780_PIXEL_UPDATE(hprot1_pixel_update);
- void hprotr8a(machine_config &config);
- void hprot2r6(machine_config &config);
- void hprot1(machine_config &config);
void i80c31_io(address_map &map);
void i80c31_prg(address_map &map);
-private:
+
virtual void machine_start() override;
virtual void machine_reset() override;
required_device<cpu_device> m_maincpu;