summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/goodejan.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/goodejan.cpp')
-rw-r--r--src/mame/drivers/goodejan.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/mame/drivers/goodejan.cpp b/src/mame/drivers/goodejan.cpp
index 80050f60155..ddceaaa7c2f 100644
--- a/src/mame/drivers/goodejan.cpp
+++ b/src/mame/drivers/goodejan.cpp
@@ -136,6 +136,8 @@ public:
void draw_sprites(bitmap_ind16 &bitmap,const rectangle &cliprect,int pri);
virtual void video_start() override;
uint32_t screen_update(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
+ void totmejan(machine_config &config);
+ void goodejan(machine_config &config);
};
/*******************************
@@ -630,7 +632,7 @@ WRITE16_MEMBER( goodejan_state::layer_scroll_w )
-static MACHINE_CONFIG_START( goodejan )
+MACHINE_CONFIG_START(goodejan_state::goodejan)
/* basic machine hardware */
MCFG_CPU_ADD("maincpu", V30, GOODEJAN_MHZ2/2)
@@ -675,7 +677,7 @@ static MACHINE_CONFIG_START( goodejan )
MCFG_SEIBU_SOUND_YM_WRITE_CB(DEVWRITE8("ymsnd", ym3812_device, write))
MACHINE_CONFIG_END
-static MACHINE_CONFIG_DERIVED( totmejan, goodejan )
+MACHINE_CONFIG_DERIVED(goodejan_state::totmejan, goodejan)
MCFG_CPU_MODIFY("maincpu")
MCFG_CPU_IO_MAP(totmejan_io_map)
MACHINE_CONFIG_END