summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/nsg6809.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/nsg6809.cpp')
-rw-r--r--src/mame/drivers/nsg6809.cpp14
1 files changed, 10 insertions, 4 deletions
diff --git a/src/mame/drivers/nsg6809.cpp b/src/mame/drivers/nsg6809.cpp
index e143787bba8..f816857eb69 100644
--- a/src/mame/drivers/nsg6809.cpp
+++ b/src/mame/drivers/nsg6809.cpp
@@ -45,12 +45,18 @@ class nsg6809_state : public driver_device
{
public:
nsg6809_state(const machine_config &mconfig, device_type type, const char *tag)
- : driver_device(mconfig, type, tag),
- m_maincpu(*this, "maincpu") {}
+ : driver_device(mconfig, type, tag)
+ , m_maincpu(*this, "maincpu")
+ {
+ }
- required_device<cpu_device> m_maincpu;
void pitchhit(machine_config &config);
+
+protected:
void main_map(address_map &map);
+
+private:
+ required_device<cpu_device> m_maincpu;
};
@@ -95,7 +101,7 @@ IC label "PH101C" and "CK# $A790"
ROM_START( pitchhit )
ROM_REGION( 0x8000, "maincpu", 0 )
- ROM_LOAD( "PH101C__CK_A790.U14", 0x0000, 0x8000, CRC(1d306ab7) SHA1(13faf7c6dca8e5482672b2d09a99616896c4ae55) )
+ ROM_LOAD( "ph101c__ck_a790.u14", 0x0000, 0x8000, CRC(1d306ab7) SHA1(13faf7c6dca8e5482672b2d09a99616896c4ae55) )
ROM_END