summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/machine/pci-apic.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/machine/pci-apic.c')
-rw-r--r--src/emu/machine/pci-apic.c18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/emu/machine/pci-apic.c b/src/emu/machine/pci-apic.c
new file mode 100644
index 00000000000..7b61167d1d4
--- /dev/null
+++ b/src/emu/machine/pci-apic.c
@@ -0,0 +1,18 @@
+#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();
+}