mirror of
https://github.com/86Box/86Box.git
synced 2026-02-26 05:53:15 -07:00
Added the Mach8 and Mach32 ISA/VLB/PCI cards (initial implementation and MCA coming soon for the Mach32) and their corresponding EEPROM's. Added INMOS XGA ISA card and updated the SVGA core to reflect its mapping as well as the Mach8/32 mapping when in 8514 monitor mode. Mark the XGA button as already checked and locked when a standalone XGA BIOS card is present like the INMOS one. (QT only) Same concept as above, but applies to the Mach8 and 32 for the 8514 option as well. (QT only)
28 lines
701 B
C
28 lines
701 B
C
/*
|
|
* 86Box A hypervisor and IBM PC system emulator that specializes in
|
|
* running old operating systems and software designed for IBM
|
|
* PC systems and compatibles from 1981 through fairly recent
|
|
* system designs based on the PCI bus.
|
|
*
|
|
* This file is part of the 86Box distribution.
|
|
*
|
|
* IBM XGA emulation.
|
|
*
|
|
*
|
|
*
|
|
* Authors: TheCollector1995.
|
|
*
|
|
* Copyright 2022 TheCollector1995.
|
|
*/
|
|
|
|
#ifndef VIDEO_XGA_DEVICE_H
|
|
#define VIDEO_XGA_DEVICE_H
|
|
extern int xga_has_vga;
|
|
|
|
#ifdef EMU_DEVICE_H
|
|
extern const device_t xga_device;
|
|
extern const device_t xga_isa_device;
|
|
extern const device_t inmos_isa_device;
|
|
#endif
|
|
#endif /*VIDEO_XGA_DEVICE_H*/
|