projects
/
sdk
/
emulator
/
qemu.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
2d029203c02966e1da64b10158cb33d39e100bef
[sdk/emulator/qemu.git]
/
hw
/
vga-pci.h
1
#ifndef VGA_PCI_H
2
#define VGA_PCI_H
3
4
#include "qemu-common.h"
5
6
/* vga-pci.c */
7
DeviceState *pci_vga_init(PCIBus *bus);
8
9
/* cirrus_vga.c */
10
DeviceState *pci_cirrus_vga_init(PCIBus *bus);
11
12
#ifdef CONFIG_MARU
13
DeviceState *pci_maru_vga_init(PCIBus *bus);
14
#endif
15
16
#endif