diff options
author | 2014-11-20 22:31:30 +0100 | |
---|---|---|
committer | 2014-11-20 22:30:41 +0100 | |
commit | 885bfef45365aa3c9c2d27d6acaaf69eeaf1ba6f (patch) | |
tree | 0a1f4d19f4075c6a77a6f2914e3b9b27abdba3b7 /src/emu/machine/lpc.c | |
parent | f1f6d4c91c5c1f5bea4da95a722b5b9d1fef3167 (diff) |
lpc: skeleton acpi [O. Galibert]
Diffstat (limited to 'src/emu/machine/lpc.c')
-rw-r--r-- | src/emu/machine/lpc.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/emu/machine/lpc.c b/src/emu/machine/lpc.c new file mode 100644 index 00000000000..7921542adf1 --- /dev/null +++ b/src/emu/machine/lpc.c @@ -0,0 +1,7 @@ +#include "lpc.h" + +lpc_device::lpc_device(const machine_config &mconfig, device_type type, const char *name, const char *tag, device_t *owner, UINT32 clock, const char *shortname, const char *source) : + device_t(mconfig, type, name, tag, owner, clock, shortname, source) +{ +} + |