summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/juicebox.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/juicebox.cpp')
-rw-r--r--src/mame/drivers/juicebox.cpp10
1 files changed, 7 insertions, 3 deletions
diff --git a/src/mame/drivers/juicebox.cpp b/src/mame/drivers/juicebox.cpp
index dab59e93e21..aca44325b06 100644
--- a/src/mame/drivers/juicebox.cpp
+++ b/src/mame/drivers/juicebox.cpp
@@ -43,6 +43,13 @@ public:
, m_smartmedia(*this, "smartmedia")
{ }
+ void juicebox(machine_config &config);
+
+ void init_juicebox();
+
+ DECLARE_INPUT_CHANGED_MEMBER(port_changed);
+
+private:
required_device<cpu_device> m_maincpu;
required_device<s3c44b0_device> m_s3c44b0;
required_device<smartmedia_image_device> m_smartmedia;
@@ -54,10 +61,8 @@ public:
#endif
DECLARE_READ32_MEMBER(juicebox_nand_r);
DECLARE_WRITE32_MEMBER(juicebox_nand_w);
- void init_juicebox();
virtual void machine_start() override;
virtual void machine_reset() override;
- DECLARE_INPUT_CHANGED_MEMBER(port_changed);
inline void verboselog(int n_level, const char *s_fmt, ...) ATTR_PRINTF(3,4);
void smc_reset();
void smc_init();
@@ -66,7 +71,6 @@ public:
DECLARE_READ32_MEMBER(s3c44b0_gpio_port_r);
DECLARE_WRITE32_MEMBER(s3c44b0_gpio_port_w);
DECLARE_WRITE16_MEMBER(s3c44b0_i2s_data_w);
- void juicebox(machine_config &config);
void juicebox_map(address_map &map);
};