summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/ibm3153.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/ibm3153.cpp')
-rw-r--r--src/mame/drivers/ibm3153.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/mame/drivers/ibm3153.cpp b/src/mame/drivers/ibm3153.cpp
index dd6827aa57f..991e7879b00 100644
--- a/src/mame/drivers/ibm3153.cpp
+++ b/src/mame/drivers/ibm3153.cpp
@@ -52,13 +52,15 @@ public:
, m_p_chargen(*this, "chargen")
{ }
+ void ibm3153(machine_config &config);
+
+private:
DECLARE_PALETTE_INIT(ibm3153);
uint32_t screen_update(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
- void ibm3153(machine_config &config);
void io_map(address_map &map);
void mem_map(address_map &map);
-private:
+
virtual void machine_reset() override;
required_device<cpu_device> m_maincpu;
required_region_ptr<u8> m_p_chargen;