summaryrefslogtreecommitdiffstats
path: root/src/mame/drivers/feversoc.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/feversoc.cpp')
-rw-r--r--src/mame/drivers/feversoc.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/drivers/feversoc.cpp b/src/mame/drivers/feversoc.cpp
index 7247c368367..070cb4b7763 100644
--- a/src/mame/drivers/feversoc.cpp
+++ b/src/mame/drivers/feversoc.cpp
@@ -287,8 +287,8 @@ void feversoc_state::machine_start()
MACHINE_CONFIG_START(feversoc_state::feversoc)
/* basic machine hardware */
- MCFG_CPU_ADD("maincpu",SH2,MASTER_CLOCK)
- MCFG_CPU_PROGRAM_MAP(feversoc_map)
+ MCFG_DEVICE_ADD("maincpu",SH2,MASTER_CLOCK)
+ MCFG_DEVICE_PROGRAM_MAP(feversoc_map)
/* video hardware */
MCFG_SCREEN_ADD("screen", RASTER)
@@ -298,7 +298,7 @@ MACHINE_CONFIG_START(feversoc_state::feversoc)
MCFG_SCREEN_VISIBLE_AREA(0*8, 40*8-1, 0*8, 30*8-1) //dynamic resolution?
MCFG_SCREEN_UPDATE_DRIVER(feversoc_state, screen_update_feversoc)
MCFG_SCREEN_PALETTE("palette")
- MCFG_SCREEN_VBLANK_CALLBACK(WRITELINE(feversoc_state, feversoc_irq))
+ MCFG_SCREEN_VBLANK_CALLBACK(WRITELINE(*this, feversoc_state, feversoc_irq))
MCFG_GFXDECODE_ADD("gfxdecode", "palette", feversoc)
MCFG_PALETTE_ADD("palette", 0x1000)