summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/machine/s3c2400.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/machine/s3c2400.c')
-rw-r--r--src/emu/machine/s3c2400.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/emu/machine/s3c2400.c b/src/emu/machine/s3c2400.c
index 4ed4c77a073..ca008fd36fb 100644
--- a/src/emu/machine/s3c2400.c
+++ b/src/emu/machine/s3c2400.c
@@ -67,7 +67,7 @@ s3c2400_device::s3c2400_device(const machine_config &mconfig, const char *tag, d
s3c2400_device::~s3c2400_device()
{
}
-
+
//-------------------------------------------------
// static_set_palette_tag: Set the tag of the
// palette device
@@ -99,8 +99,8 @@ void s3c2400_device::device_config_complete()
void s3c2400_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(0x14000000, 0x1400003b, read32_delegate(FUNC(s3c2400_device::s3c24xx_memcon_r), this), write32_delegate(FUNC(s3c2400_device::s3c24xx_memcon_w), this));
space.install_readwrite_handler(0x14200000, 0x1420005b, read32_delegate(FUNC(s3c2400_device::s3c24xx_usb_host_r), this), write32_delegate(FUNC(s3c2400_device::s3c24xx_usb_host_w), this));
space.install_readwrite_handler(0x14400000, 0x14400017, read32_delegate(FUNC(s3c2400_device::s3c24xx_irq_r), this), write32_delegate(FUNC(s3c2400_device::s3c24xx_irq_w), this));