2017-05-30 03:38:38 +02:00
|
|
|
/*
|
2023-01-06 15:36:05 -05: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-05-30 03:38:38 +02:00
|
|
|
*
|
2023-01-06 15:36:05 -05:00
|
|
|
* Emulation of BusLogic BT-542B ISA and BT-958D PCI SCSI
|
|
|
|
|
* controllers.
|
2017-05-30 03:38:38 +02:00
|
|
|
*
|
2020-03-25 00:46:02 +02:00
|
|
|
*
|
2017-05-30 03:38:38 +02:00
|
|
|
*
|
2023-01-06 15:36:05 -05:00
|
|
|
* Authors: TheCollector1995, <mariogplayer@gmail.com>
|
|
|
|
|
* Miran Grca, <mgrca8@gmail.com>
|
|
|
|
|
* Fred N. van Kempen, <decwiz@yahoo.com>
|
|
|
|
|
*
|
|
|
|
|
* Copyright 2016-2018 Miran Grca.
|
2023-01-06 15:36:29 -05:00
|
|
|
* Copyright 2017-2018 Fred N. van Kempen.
|
2017-05-30 03:38:38 +02:00
|
|
|
*/
|
|
|
|
|
|
2017-05-07 23:42:05 -04:00
|
|
|
#ifndef SCSI_BUSLOGIC_H
|
2022-09-18 17:15:38 -04:00
|
|
|
#define SCSI_BUSLOGIC_H
|
2017-05-05 01:49:42 +02:00
|
|
|
|
2022-01-28 19:41:04 +01:00
|
|
|
extern const device_t buslogic_542b_device;
|
2018-03-19 01:02:04 +01:00
|
|
|
extern const device_t buslogic_545s_device;
|
2022-01-28 19:41:04 +01:00
|
|
|
extern const device_t buslogic_542bh_device;
|
|
|
|
|
extern const device_t buslogic_545c_device;
|
2018-03-19 01:02:04 +01:00
|
|
|
extern const device_t buslogic_640a_device;
|
|
|
|
|
extern const device_t buslogic_445s_device;
|
2022-01-28 19:41:04 +01:00
|
|
|
extern const device_t buslogic_445c_device;
|
|
|
|
|
extern const device_t buslogic_958d_pci_device;
|
2017-06-14 03:03:29 +02:00
|
|
|
|
2023-08-21 20:26:11 -04:00
|
|
|
extern void BuslogicDeviceReset(void *priv);
|
2022-02-18 19:42:21 -05:00
|
|
|
|
2022-09-18 17:15:38 -04:00
|
|
|
#endif /*SCSI_BUSLOGIC_H*/
|