diff options
Diffstat (limited to 'src/devices/machine/pci-apic.c')
-rw-r--r-- | src/devices/machine/pci-apic.c | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/devices/machine/pci-apic.c b/src/devices/machine/pci-apic.c new file mode 100644 index 00000000000..ce32692c7e6 --- /dev/null +++ b/src/devices/machine/pci-apic.c @@ -0,0 +1,20 @@ +// license:BSD-3-Clause +// copyright-holders:Olivier Galibert +#include "pci-apic.h" + +const device_type APIC = &device_creator<apic_device>; + +apic_device::apic_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) + : pci_device(mconfig, APIC, "I/O Advanced Programmable Interrupt Controller", tag, owner, clock, "apic", __FILE__) +{ +} + +void apic_device::device_start() +{ + pci_device::device_start(); +} + +void apic_device::device_reset() +{ + pci_device::device_reset(); +} |