Files
86Box/src/include/86box/scsi_qlogic.h
Dmitry Borisov 597adb5897 Add functionality to emulate QLogic ISP SCSI HBA devices
Tested with Windows 2000 and NetBSD 10.1.
Target Mode is not implemented, because I had no OS using it.
2026-02-22 15:56:07 +06:00

20 lines
649 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 QLogic QLA1x40/QLA1x80/QLA1x160 SCSI HBA.
*
* Authors: Dmitry Borisov, <di.sean@protonmail.com>
*
* Copyright 2026 Dmitry Borisov
*/
#pragma once
extern const device_t qla1040b_device;
extern const device_t qla1080_device;
extern const device_t qla1240_device;
extern const device_t qla1280_device;
extern const device_t qla12160a_device;