blob: b1903fb6cfc5e2cfa6867a1ecb3b9c31072b0f27 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
// license:BSD-3-Clause
// copyright-holders:Olivier Galibert
#include "emu.h"
#include "lpc.h"
lpc_device::lpc_device(const machine_config &mconfig, device_type type, const char *name, const char *tag, device_t *owner, uint32_t clock, const char *shortname, const char *source) :
device_t(mconfig, type, name, tag, owner, clock, shortname, source)
{
}
|