mirror of
https://github.com/86Box/86Box.git
synced 2026-02-28 01:44:22 -07:00
Tested with Windows 2000 and NetBSD 10.1. Target Mode is not implemented, because I had no OS using it.
20 lines
649 B
C
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;
|