mirror of
https://github.com/mii443/qemu.git
synced 2025-08-22 15:15:46 +00:00
There is no ISA bus part in the MMIO VGA device, so rename: * hw/display/vga-isa-mm.c -> hw/display/vga-mmio.c * CONFIG_VGA_ISA_MM -> CONFIG_VGA_MMIO * ISAVGAMMState -> VGAMmioState * isa_vga_mm_init() -> vga_mmio_init() Reviewed-by: BALATON Zoltan <balaton@eik.bme.hu> Reviewed-by: Thomas Huth <thuth@redhat.com> Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Message-Id: <20211206224528.563588-2-f4bug@amsat.org> Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
31 lines
675 B
C
31 lines
675 B
C
/*
|
|
* QEMU VGA Emulator.
|
|
*
|
|
* Copyright (c) 2003 Fabrice Bellard
|
|
*
|
|
* This work is licensed under the terms of the GNU GPL, version 2 or later.
|
|
* See the COPYING file in the top-level directory.
|
|
*/
|
|
#ifndef QEMU_HW_DISPLAY_VGA_H
|
|
#define QEMU_HW_DISPLAY_VGA_H
|
|
|
|
#include "exec/hwaddr.h"
|
|
|
|
/*
|
|
* modules can reference this symbol to avoid being loaded
|
|
* into system emulators without vga support
|
|
*/
|
|
extern bool have_vga;
|
|
|
|
enum vga_retrace_method {
|
|
VGA_RETRACE_DUMB,
|
|
VGA_RETRACE_PRECISE
|
|
};
|
|
|
|
extern enum vga_retrace_method vga_retrace_method;
|
|
|
|
int vga_mmio_init(hwaddr vram_base, hwaddr ctrl_base,
|
|
int it_shift, MemoryRegion *address_space);
|
|
|
|
#endif
|