69 lines
1.6 KiB
C
69 lines
1.6 KiB
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.
|
||
|
|
*
|
||
|
|
* Handling of the emulated chipsets.
|
||
|
|
*
|
||
|
|
* Version: @(#)machine.h 1.0.0 2019/05/13
|
||
|
|
*
|
||
|
|
* Authors: Miran Grca, <mgrca8@gmail.com>
|
||
|
|
*
|
||
|
|
* Copyright 2019 Miran Grca.
|
||
|
|
*/
|
||
|
|
#ifndef EMU_CHIPSET_H
|
||
|
|
# define EMU_CHIPSET_H
|
||
|
|
|
||
|
|
|
||
|
|
/* ACC */
|
||
|
|
extern const device_t acc2168_device;
|
||
|
|
|
||
|
|
/* Acer M3A and V35N */
|
||
|
|
extern const device_t acerm3a_device;
|
||
|
|
|
||
|
|
/* ALi */
|
||
|
|
extern const device_t ali1429_device;
|
||
|
|
|
||
|
|
/* Headland */
|
||
|
|
extern const device_t headland_device;
|
||
|
|
extern const device_t headland_386_device;
|
||
|
|
|
||
|
|
/* Intel 4x0xX */
|
||
|
|
extern const device_t i420tx_device;
|
||
|
|
extern const device_t i430lx_device;
|
||
|
|
extern const device_t i430nx_device;
|
||
|
|
extern const device_t i430fx_device;
|
||
|
|
extern const device_t i430fx_pb640_device;
|
||
|
|
extern const device_t i430hx_device;
|
||
|
|
extern const device_t i430vx_device;
|
||
|
|
#if defined(DEV_BRANCH) && defined(USE_I686)
|
||
|
|
extern const device_t i440fx_device;
|
||
|
|
#endif
|
||
|
|
|
||
|
|
/* NEAT */
|
||
|
|
extern const device_t neat_device;
|
||
|
|
|
||
|
|
/* OPTi */
|
||
|
|
extern const device_t opti495_device;
|
||
|
|
|
||
|
|
/* SCAT */
|
||
|
|
extern const device_t scat_device;
|
||
|
|
extern const device_t scat_4_device;
|
||
|
|
extern const device_t scat_sx_device;
|
||
|
|
|
||
|
|
/* SiS */
|
||
|
|
extern const device_t sis_85c471_device;
|
||
|
|
extern const device_t sis_85c496_device;
|
||
|
|
#if defined(DEV_BRANCH) && defined(USE_SIS_85C50X)
|
||
|
|
extern const device_t sis_85c50x_device;
|
||
|
|
#endif
|
||
|
|
|
||
|
|
/* WD */
|
||
|
|
extern const device_t wd76c10_device;
|
||
|
|
|
||
|
|
|
||
|
|
#endif /*EMU_CHIPSET_H*/
|