diff options
author | 2010-12-24 08:56:21 +0000 | |
---|---|---|
committer | 2010-12-24 08:56:21 +0000 | |
commit | 6d7892ab139110afacb0af2cf38f15a8aa318e12 (patch) | |
tree | 3d87ebf6390fb59e1ea58fe9d01a1c659d09e78c /src/emu/machine/s3c2400.c | |
parent | ab6b3c8d289037507d25d3c7793a9905355d0322 (diff) |
s3c24xx.c: Fixing compiling process on Linux and MacOSX [qmc2]
Diffstat (limited to 'src/emu/machine/s3c2400.c')
-rw-r--r-- | src/emu/machine/s3c2400.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/machine/s3c2400.c b/src/emu/machine/s3c2400.c index 05b506721ee..a3693004294 100644 --- a/src/emu/machine/s3c2400.c +++ b/src/emu/machine/s3c2400.c @@ -57,7 +57,7 @@ DEVICE_START( s3c2400 ) memory_install_readwrite32_device_handler( space, device, 0x14600040, 0x1460005b, 0, 0, s3c24xx_dma_2_r, s3c24xx_dma_2_w); memory_install_readwrite32_device_handler( space, device, 0x14600060, 0x1460007b, 0, 0, s3c24xx_dma_3_r, s3c24xx_dma_3_w); memory_install_readwrite32_device_handler( space, device, 0x14800000, 0x14800017, 0, 0, s3c24xx_clkpow_r, s3c24xx_clkpow_w); - memory_install_readwrite32_device_handler( space, device, 0x14a00000, 0x14a003ff, 0, 0, s3c24xx_lcd_r, s3c24xx_lcd_w); + memory_install_readwrite32_device_handler( space, device, 0x14a00000, 0x14a003ff, 0, 0, s3c2400_lcd_r, s3c24xx_lcd_w); memory_install_readwrite32_device_handler( space, device, 0x14a00400, 0x14a007ff, 0, 0, s3c24xx_lcd_palette_r, s3c24xx_lcd_palette_w); memory_install_readwrite32_device_handler( space, device, 0x15000000, 0x1500002b, 0, 0, s3c24xx_uart_0_r, s3c24xx_uart_0_w); memory_install_readwrite32_device_handler( space, device, 0x15004000, 0x1500402b, 0, 0, s3c24xx_uart_1_r, s3c24xx_uart_1_w); |