1. Added the Tribble 16-bit IBM SCSI adapter. 2. Reworked the vendor unique commands to counter audio issues as well as adding some undocumented commands (thanks to the source code of xmcd!), plus replacing the NEC CD-ROM DRIVE:75 with the :38 one.
28 lines
783 B
C
28 lines
783 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.
|
|
*
|
|
* This file is part of the 86Box distribution.
|
|
*
|
|
* Implementation of the IBM PS/2 SCSI controller with
|
|
* cache for MCA only.
|
|
*
|
|
*
|
|
*
|
|
* Authors: Sarah Walker, <https://pcem-emulator.co.uk/>
|
|
* TheCollector1995, <mariogplayer@gmail.com>
|
|
*
|
|
* Copyright 2020 Sarah Walker.
|
|
* Copyright 2020 TheCollector1995.
|
|
*/
|
|
|
|
#ifndef SCSI_SPOCK_H
|
|
#define SCSI_SPOCK_H
|
|
|
|
extern const device_t spock_device;
|
|
extern const device_t tribble_device;
|
|
|
|
#endif /*SCSI_SPOCK_H*/
|