summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/machine/s3c2410.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/machine/s3c2410.c')
-rw-r--r--src/emu/machine/s3c2410.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/machine/s3c2410.c b/src/emu/machine/s3c2410.c
index 0bba6bd3022..140e2620c13 100644
--- a/src/emu/machine/s3c2410.c
+++ b/src/emu/machine/s3c2410.c
@@ -101,8 +101,8 @@ void s3c2410_device::device_config_complete()
void s3c2410_device::device_start()
{
s3c24xx_device_start();
-
- address_space &space = m_cpu->memory().space( AS_PROGRAM);
+
+ address_space &space = m_cpu->memory().space( AS_PROGRAM);
space.install_readwrite_handler( 0x48000000, 0x4800003b, read32_delegate(FUNC(s3c2410_device::s3c24xx_memcon_r), this), write32_delegate(FUNC(s3c2410_device::s3c24xx_memcon_w), this));
space.install_readwrite_handler( 0x49000000, 0x4900005b, read32_delegate(FUNC(s3c2410_device::s3c24xx_usb_host_r), this), write32_delegate(FUNC(s3c2410_device::s3c24xx_usb_host_w), this));
space.install_readwrite_handler( 0x4a000000, 0x4a00001f, read32_delegate(FUNC(s3c2410_device::s3c24xx_irq_r), this), write32_delegate(FUNC(s3c2410_device::s3c24xx_irq_w), this));