mirror of
https://github.com/86Box/86Box.git
synced 2026-02-24 02:18:20 -07:00
26 lines
782 B
C
26 lines
782 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.
|
|
*
|
|
* Emulation of the Intel PIIX, PIIX3, PIIX4, PIIX4E, and SMSC
|
|
* SLC90E66 (Victory66) Xcelerators.
|
|
*
|
|
* Emulation core dispatcher.
|
|
*
|
|
*
|
|
*
|
|
* Authors: Sarah Walker, <http://pcem-emulator.co.uk/>
|
|
* Miran Grca, <mgrca8@gmail.com>
|
|
* Copyright 2008-2020 Sarah Walker.
|
|
* Copyright 2016-2020 Miran Grca.
|
|
*/
|
|
|
|
extern const device_t piix_device;
|
|
extern const device_t piix_rev02_device;
|
|
extern const device_t piix3_device;
|
|
extern const device_t piix4_device;
|
|
extern const device_t piix4e_device;
|
|
extern const device_t slc90e66_device;
|