blob: b4818b12607b916107b28ed37a2136b642225221 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
// license:BSD-3-Clause
// copyright-holders:Olivier Galibert
#include "emu.h"
#include "pci-apic.h"
DEFINE_DEVICE_TYPE(APIC, apic_device, "apic", "I/O Advanced Programmable Interrupt Controller")
apic_device::apic_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock)
: pci_device(mconfig, APIC, tag, owner, clock)
{
}
void apic_device::device_start()
{
pci_device::device_start();
}
void apic_device::device_reset()
{
pci_device::device_reset();
}
|