blob: 3a77b09abb738b796a744b4418d02833d4def2f8 (
plain) (
blame)
1
2
3
4
5
6
7
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, std::string tag, device_t *owner, UINT32 clock, const char *shortname, const char *source) :
device_t(mconfig, type, name, tag, owner, clock, shortname, source)
{
}
|