summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/snes/sfx.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/snes/sfx.cpp')
-rw-r--r--src/devices/bus/snes/sfx.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/bus/snes/sfx.cpp b/src/devices/bus/snes/sfx.cpp
index d02e811754e..f8667f199e0 100644
--- a/src/devices/bus/snes/sfx.cpp
+++ b/src/devices/bus/snes/sfx.cpp
@@ -87,9 +87,9 @@ WRITE_LINE_MEMBER(sns_rom_superfx_device::snes_extern_irq_w)
MACHINE_CONFIG_START(sns_rom_superfx_device::device_add_mconfig)
- MCFG_CPU_ADD("superfx", SUPERFX, 21480000) /* 21.48MHz */
- MCFG_CPU_PROGRAM_MAP(sfx_map)
- MCFG_SUPERFX_OUT_IRQ(WRITELINE(sns_rom_superfx_device, snes_extern_irq_w)) /* IRQ line from cart */
+ MCFG_DEVICE_ADD("superfx", SUPERFX, 21480000) /* 21.48MHz */
+ MCFG_DEVICE_PROGRAM_MAP(sfx_map)
+ MCFG_SUPERFX_OUT_IRQ(WRITELINE(*this, sns_rom_superfx_device, snes_extern_irq_w)) /* IRQ line from cart */
MACHINE_CONFIG_END
READ8_MEMBER( sns_rom_superfx_device::chip_read )