summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/machine/s3c2400.c
diff options
context:
space:
mode:
author Fabio Priuli <etabeta78@users.noreply.github.com>2010-12-31 18:15:29 +0000
committer Fabio Priuli <etabeta78@users.noreply.github.com>2010-12-31 18:15:29 +0000
commitc00b57ae6d07c61c81cb99c95676a06720d83697 (patch)
treef0715073758eb84efacc9f6087614931560145b1 /src/emu/machine/s3c2400.c
parentb921f6545410e210af5349f33acde4dcb4a17a27 (diff)
s3c24xx: some improvements and fixes [Tim Schuerewegen]
out of whatsnew: these are now in sync with latest MESS additions, to avoid regressions in the MESS drivers which use these chips
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 a3693004294..8da4a688ea6 100644
--- a/src/emu/machine/s3c2400.c
+++ b/src/emu/machine/s3c2400.c
@@ -9,7 +9,7 @@
#include "emu.h"
#include "cpu/arm7/arm7.h"
#include "cpu/arm7/arm7core.h"
-#include "s3c2400.h"
+#include "machine/s3c2400.h"
#include "sound/dac.h"
#define VERBOSE_LEVEL ( 0 )
@@ -27,8 +27,6 @@ INLINE void ATTR_PRINTF(3,4) verboselog( running_machine *machine, int n_level,
}
}
-#include "machine/s3c2400.h"
-
#define DEVICE_S3C2400
#include "machine/s3c24xx.c"
#undef DEVICE_S3C2400
@@ -90,3 +88,5 @@ void s3c2400_uart_fifo_w( running_device *device, int uart, UINT8 data)
{
s3c24xx_uart_fifo_w( device, uart, data);
}
+
+DEFINE_LEGACY_DEVICE(S3C2400, s3c2400);