mirror of
https://github.com/86Box/86Box.git
synced 2026-02-23 18:08:20 -07:00
23 lines
632 B
C
23 lines
632 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
|
|
|
|
#ifdef EMU_DEVICE_H
|
|
extern const device_t xga_device;
|
|
extern const device_t inmos_isa_device;
|
|
#endif
|
|
#endif /*VIDEO_XGA_DEVICE_H*/
|