27 lines
811 B
C
27 lines
811 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.
|
|
*
|
|
* Emulation of the Tseng Labs ET4000.
|
|
*
|
|
* Version: @(#)vid_et4000.c 1.0.9 2018/08/16
|
|
*
|
|
* Authors: Sarah Walker, <http://pcem-emulator.co.uk/>
|
|
* Miran Grca, <mgrca8@gmail.com>
|
|
*
|
|
* Copyright 2008-2018 Sarah Walker.
|
|
* Copyright 2016-2018 Miran Grca.
|
|
*/
|
|
#ifndef EMU_VID_ET4000_H
|
|
# define EMU_VID_ET4000_H
|
|
|
|
extern const device_t et4000_isa_device;
|
|
extern const device_t et4000k_isa_device;
|
|
extern const device_t et4000k_tg286_isa_device;
|
|
extern const device_t et4000_mca_device;
|
|
|
|
#endif /*EMU_VID_ET4000_H*/ |