summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/pci-apic.cpp
blob: ee5674fc58f6d1f502c903e4305c5fa80eea6a73 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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, std::string 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();
}