2017-05-30 03:38:38 +02:00
|
|
|
/*
|
|
|
|
|
* 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.
|
|
|
|
|
*
|
2017-09-04 01:52:29 -04:00
|
|
|
* This file is part of the 86Box distribution.
|
2017-05-30 03:38:38 +02:00
|
|
|
*
|
2017-09-04 01:52:29 -04:00
|
|
|
* Definitions for the Super I/O chips.
|
2017-05-30 03:38:38 +02:00
|
|
|
*
|
2018-11-08 19:21:55 +01:00
|
|
|
* Version: @(#)sio.h 1.0.4 2018/11/05
|
2017-09-04 01:52:29 -04:00
|
|
|
*
|
|
|
|
|
* Author: Fred N. van Kempen, <decwiz@yahoo.com>
|
|
|
|
|
* Copyright 2017 Fred N. van Kempen.
|
2017-05-30 03:38:38 +02:00
|
|
|
*/
|
2017-09-04 01:52:29 -04:00
|
|
|
#ifndef EMU_SIO_H
|
|
|
|
|
# define EMU_SIO_H
|
|
|
|
|
|
|
|
|
|
|
2018-11-08 19:21:55 +01:00
|
|
|
extern const device_t fdc37c663_device;
|
|
|
|
|
extern const device_t fdc37c665_device;
|
|
|
|
|
extern const device_t fdc37c666_device;
|
|
|
|
|
extern const device_t fdc37c669_device;
|
|
|
|
|
extern const device_t fdc37c932fr_device;
|
|
|
|
|
extern const device_t fdc37c935_device;
|
|
|
|
|
extern const device_t pc87306_device;
|
|
|
|
|
extern const device_t sio_detect_device;
|
|
|
|
|
extern const device_t um8669f_device;
|
|
|
|
|
extern const device_t w83877f_device;
|
|
|
|
|
extern const device_t w83877f_president_device;
|
2017-09-04 01:52:29 -04:00
|
|
|
|
2017-05-30 03:38:38 +02:00
|
|
|
|
2017-09-04 01:52:29 -04:00
|
|
|
#endif /*EMU_SIO_H*/
|