mirror of
https://github.com/xemu-project/xemu.git
synced 2024-11-24 03:59:52 +00:00
13 lines
194 B
C
13 lines
194 B
C
|
#ifndef VGA_PCI_H
|
||
|
#define VGA_PCI_H
|
||
|
|
||
|
#include "qemu-common.h"
|
||
|
|
||
|
/* vga-pci.c */
|
||
|
DeviceState *pci_vga_init(PCIBus *bus);
|
||
|
|
||
|
/* cirrus_vga.c */
|
||
|
DeviceState *pci_cirrus_vga_init(PCIBus *bus);
|
||
|
|
||
|
#endif
|