mirror of
https://github.com/xemu-project/xemu.git
synced 2024-11-29 06:20:26 +00:00
070e9a1e83
When pulling in headers that are in the same directory as the C file (as opposed to one in include/), we should use its relative path, without a directory. Signed-off-by: Michael S. Tsirkin <mst@redhat.com> Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Tested-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
25 lines
553 B
C
25 lines
553 B
C
/* HPPA cores and system support chips. */
|
|
|
|
#ifndef HW_HPPA_SYS_H
|
|
#define HW_HPPA_SYS_H
|
|
|
|
#include "target/hppa/cpu-qom.h"
|
|
#include "hw/pci/pci.h"
|
|
#include "hw/pci/pci_host.h"
|
|
#include "hw/ide.h"
|
|
#include "hw/i386/pc.h"
|
|
#include "hw/irq.h"
|
|
|
|
#include "hppa_hardware.h"
|
|
|
|
PCIBus *dino_init(MemoryRegion *, qemu_irq *, qemu_irq *);
|
|
|
|
#define TYPE_DINO_PCI_HOST_BRIDGE "dino-pcihost"
|
|
|
|
/* hppa_pci.c. */
|
|
extern const MemoryRegionOps hppa_pci_ignore_ops;
|
|
extern const MemoryRegionOps hppa_pci_conf1_ops;
|
|
extern const MemoryRegionOps hppa_pci_iack_ops;
|
|
|
|
#endif
|