summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/snes.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/snes.cpp')
-rw-r--r--src/mame/drivers/snes.cpp7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/mame/drivers/snes.cpp b/src/mame/drivers/snes.cpp
index e09e624fc9d..5ad6dd856f0 100644
--- a/src/mame/drivers/snes.cpp
+++ b/src/mame/drivers/snes.cpp
@@ -51,6 +51,10 @@ public:
, m_cartslot(*this, "snsslot")
{ }
+ void snespal(machine_config &config);
+ void snes(machine_config &config);
+
+private:
DECLARE_READ8_MEMBER( snes20_hi_r );
DECLARE_WRITE8_MEMBER( snes20_hi_w );
DECLARE_READ8_MEMBER( snes20_lo_r );
@@ -106,8 +110,7 @@ public:
required_device<snes_control_port_device> m_ctrl1;
required_device<snes_control_port_device> m_ctrl2;
optional_device<sns_cart_slot_device> m_cartslot;
- void snespal(machine_config &config);
- void snes(machine_config &config);
+
void snes_map(address_map &map);
void spc_map(address_map &map);
};