diff options
Diffstat (limited to 'src/devices/machine/lpc.c')
-rw-r--r-- | src/devices/machine/lpc.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/devices/machine/lpc.c b/src/devices/machine/lpc.c new file mode 100644 index 00000000000..afb51435f23 --- /dev/null +++ b/src/devices/machine/lpc.c @@ -0,0 +1,8 @@ +// license:BSD-3-Clause +// copyright-holders:Olivier Galibert +#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) +{ +} |