blob: e7bcb22146f4c2d7e290e5eee33d9c16f1dc1127 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef QEMU_VMWARE_VGA_H
#define QEMU_VMWARE_VGA_H
#include "qemu-common.h"
/* vmware_vga.c */
static inline void pci_vmsvga_init(PCIBus *bus)
{
pci_create_simple(bus, -1, "vmware-svga");
}
#endif
|