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.
|
|
|
|
|
*
|
|
|
|
|
* Emulation of the Intel PIIX and PIIX3 Xcelerators.
|
|
|
|
|
*
|
|
|
|
|
* Emulation core dispatcher.
|
|
|
|
|
*
|
2018-04-25 23:51:13 +02:00
|
|
|
* Version: @(#)piix.h 1.0.3 2018/03/26
|
2017-05-30 03:38:38 +02:00
|
|
|
*
|
2017-08-24 01:14:39 -04:00
|
|
|
* Authors: Sarah Walker, <http://pcem-emulator.co.uk/>
|
2017-05-30 03:38:38 +02:00
|
|
|
* Miran Grca, <mgrca8@gmail.com>
|
2018-04-25 23:51:13 +02:00
|
|
|
* Copyright 2008-2018 Sarah Walker.
|
|
|
|
|
* Copyright 2016-2018 Miran Grca.
|
2017-05-30 03:38:38 +02:00
|
|
|
*/
|
|
|
|
|
|
2018-04-25 23:51:13 +02:00
|
|
|
extern const device_t piix_device;
|
|
|
|
|
extern const device_t piix3_device;
|
2017-08-28 23:47:09 +02:00
|
|
|
|
2018-04-25 23:51:13 +02:00
|
|
|
extern int piix_bus_master_dma_read(int channel, uint8_t *data, int transfer_length, void *priv);
|
|
|
|
|
extern int piix_bus_master_dma_write(int channel, uint8_t *data, int transfer_length, void *priv);
|
2017-05-05 01:49:42 +02:00
|
|
|
|
2018-04-25 23:51:13 +02:00
|
|
|
extern void piix_bus_master_set_irq(int channel, void *priv);
|