summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/gizmondo.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/gizmondo.cpp')
-rw-r--r--src/mame/drivers/gizmondo.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/drivers/gizmondo.cpp b/src/mame/drivers/gizmondo.cpp
index 3d087e1f31e..425193d9155 100644
--- a/src/mame/drivers/gizmondo.cpp
+++ b/src/mame/drivers/gizmondo.cpp
@@ -187,8 +187,8 @@ DRIVER_INIT_MEMBER(gizmondo_state,gizmondo)
}
MACHINE_CONFIG_START(gizmondo_state::gizmondo)
- MCFG_CPU_ADD("maincpu", ARM9, 40000000)
- MCFG_CPU_PROGRAM_MAP(gizmondo_map)
+ MCFG_DEVICE_ADD("maincpu", ARM9, 40000000)
+ MCFG_DEVICE_PROGRAM_MAP(gizmondo_map)
MCFG_PALETTE_ADD("palette", 32768)
@@ -206,8 +206,8 @@ MACHINE_CONFIG_START(gizmondo_state::gizmondo)
MCFG_DEVICE_ADD("s3c2440", S3C2440, 12000000)
MCFG_S3C2440_PALETTE("palette")
MCFG_S3C2440_SCREEN("screen")
- MCFG_S3C2440_GPIO_PORT_R_CB(READ32(gizmondo_state, s3c2440_gpio_port_r))
- MCFG_S3C2440_GPIO_PORT_W_CB(WRITE32(gizmondo_state, s3c2440_gpio_port_w))
+ MCFG_S3C2440_GPIO_PORT_R_CB(READ32(*this, gizmondo_state, s3c2440_gpio_port_r))
+ MCFG_S3C2440_GPIO_PORT_W_CB(WRITE32(*this, gizmondo_state, s3c2440_gpio_port_w))
MCFG_DISKONCHIP_G3_ADD("diskonchip", 64)