Merge tag 'v9.0.0-rc3'
[qemu/ar7.git] / include / hw / display / vga.h
bloba79aa2909b25424b157becb9dd66e407dfddec9b
1 /*
2 * QEMU VGA Emulator.
4 * Copyright (c) 2003 Fabrice Bellard
6 * This work is licensed under the terms of the GNU GPL, version 2 or later.
7 * See the COPYING file in the top-level directory.
8 */
9 #ifndef QEMU_HW_DISPLAY_VGA_H
10 #define QEMU_HW_DISPLAY_VGA_H
13 * modules can reference this symbol to avoid being loaded
14 * into system emulators without vga support
16 extern bool have_vga;
18 enum vga_retrace_method {
19 VGA_RETRACE_DUMB,
20 VGA_RETRACE_PRECISE
23 extern enum vga_retrace_method vga_retrace_method;
25 #define TYPE_VGA_MMIO "vga-mmio"
27 #endif