summaryrefslogblamecommitdiffstatshomepage
path: root/src/devices/machine/pci-apic.cpp
blob: 2595289d0d169e7ffc75b5c7c38551953e0af7ec (plain) (tree)
1
2
3
4
5
6
7
8

                                     
                



                                                      
                                                                                                         












                                                                                                                          
// license:BSD-3-Clause
// copyright-holders:Olivier Galibert
#include "emu.h"
#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_t 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();
}