summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/tmmjprd.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/tmmjprd.cpp')
-rw-r--r--src/mame/drivers/tmmjprd.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/mame/drivers/tmmjprd.cpp b/src/mame/drivers/tmmjprd.cpp
index c45ddfdb6ce..9b3c6a54a84 100644
--- a/src/mame/drivers/tmmjprd.cpp
+++ b/src/mame/drivers/tmmjprd.cpp
@@ -92,6 +92,8 @@ public:
void draw_sprites(bitmap_ind16 &bitmap, const rectangle &cliprect, int screen);
void draw_tile(bitmap_ind16 &bitmap, const rectangle &cliprect, int x,int y,int sizex,int sizey, uint32_t tiledata, uint8_t* rom);
void draw_tilemap(bitmap_ind16 &bitmap, const rectangle &cliprect, uint32_t*tileram, uint32_t*tileregs, uint8_t*rom );
+ void tmmjprd(machine_config &config);
+ void tmpdoki(machine_config &config);
};
@@ -764,7 +766,7 @@ TIMER_DEVICE_CALLBACK_MEMBER(tmmjprd_state::scanline)
}
-static MACHINE_CONFIG_START( tmmjprd )
+MACHINE_CONFIG_START(tmmjprd_state::tmmjprd)
MCFG_CPU_ADD("maincpu",M68EC020,24000000) /* 24 MHz */
MCFG_CPU_PROGRAM_MAP(tmmjprd_map)
MCFG_TIMER_DRIVER_ADD_SCANLINE("scantimer", tmmjprd_state, scanline, "lscreen", 0, 1)
@@ -813,7 +815,7 @@ static MACHINE_CONFIG_START( tmmjprd )
MCFG_SOUND_ROUTE(1, "lspeaker", 1.00)
MACHINE_CONFIG_END
-static MACHINE_CONFIG_DERIVED( tmpdoki, tmmjprd )
+MACHINE_CONFIG_DERIVED(tmmjprd_state::tmpdoki, tmmjprd)
MCFG_DEFAULT_LAYOUT(layout_horizont)
MACHINE_CONFIG_END