summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/jantotsu.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/jantotsu.c')
-rw-r--r--src/mame/drivers/jantotsu.c48
1 files changed, 24 insertions, 24 deletions
diff --git a/src/mame/drivers/jantotsu.c b/src/mame/drivers/jantotsu.c
index f206f00cbb9..dbfb3ccccf8 100644
--- a/src/mame/drivers/jantotsu.c
+++ b/src/mame/drivers/jantotsu.c
@@ -504,40 +504,40 @@ static MACHINE_RESET( jantotsu )
static MACHINE_CONFIG_START( jantotsu, jantotsu_state )
/* basic machine hardware */
- MDRV_CPU_ADD("maincpu", Z80,18432000/4)
- MDRV_CPU_PROGRAM_MAP(jantotsu_map)
- MDRV_CPU_IO_MAP(jantotsu_io)
- MDRV_CPU_VBLANK_INT("screen", nmi_line_pulse)
+ MCFG_CPU_ADD("maincpu", Z80,18432000/4)
+ MCFG_CPU_PROGRAM_MAP(jantotsu_map)
+ MCFG_CPU_IO_MAP(jantotsu_io)
+ MCFG_CPU_VBLANK_INT("screen", nmi_line_pulse)
- MDRV_MACHINE_START(jantotsu)
- MDRV_MACHINE_RESET(jantotsu)
+ MCFG_MACHINE_START(jantotsu)
+ MCFG_MACHINE_RESET(jantotsu)
/* video hardware */
- MDRV_SCREEN_ADD("screen", RASTER)
- MDRV_SCREEN_REFRESH_RATE(60)
- MDRV_SCREEN_VBLANK_TIME(ATTOSECONDS_IN_USEC(2500)) //not accurate
- MDRV_SCREEN_FORMAT(BITMAP_FORMAT_RGB32)
- MDRV_SCREEN_SIZE(256, 256)
- MDRV_SCREEN_VISIBLE_AREA(0, 256-1, 16, 240-1)
+ MCFG_SCREEN_ADD("screen", RASTER)
+ MCFG_SCREEN_REFRESH_RATE(60)
+ MCFG_SCREEN_VBLANK_TIME(ATTOSECONDS_IN_USEC(2500)) //not accurate
+ MCFG_SCREEN_FORMAT(BITMAP_FORMAT_RGB32)
+ MCFG_SCREEN_SIZE(256, 256)
+ MCFG_SCREEN_VISIBLE_AREA(0, 256-1, 16, 240-1)
- MDRV_PALETTE_INIT(jantotsu)
- MDRV_PALETTE_LENGTH(0x20)
+ MCFG_PALETTE_INIT(jantotsu)
+ MCFG_PALETTE_LENGTH(0x20)
- MDRV_VIDEO_START(jantotsu)
- MDRV_VIDEO_UPDATE(jantotsu)
+ MCFG_VIDEO_START(jantotsu)
+ MCFG_VIDEO_UPDATE(jantotsu)
/* sound hardware */
- MDRV_SPEAKER_STANDARD_MONO("mono")
+ MCFG_SPEAKER_STANDARD_MONO("mono")
- MDRV_SOUND_ADD("sn1", SN76489A, 18432000/4)
- MDRV_SOUND_ROUTE(ALL_OUTPUTS, "mono", 0.50)
+ MCFG_SOUND_ADD("sn1", SN76489A, 18432000/4)
+ MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 0.50)
- MDRV_SOUND_ADD("sn2", SN76489A, 18432000/4)
- MDRV_SOUND_ROUTE(ALL_OUTPUTS, "mono", 0.50)
+ MCFG_SOUND_ADD("sn2", SN76489A, 18432000/4)
+ MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 0.50)
- MDRV_SOUND_ADD("adpcm", MSM5205, 384000)
- MDRV_SOUND_CONFIG(msm5205_config)
- MDRV_SOUND_ROUTE(ALL_OUTPUTS, "mono", 1.00)
+ MCFG_SOUND_ADD("adpcm", MSM5205, 384000)
+ MCFG_SOUND_CONFIG(msm5205_config)
+ MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 1.00)
MACHINE_CONFIG_END