Implemented the Pro Audio Spectrum Plus serial mixer, Pro Audio Spectrum 16 parallel mixer, Pro Audio Spectrum Plus/16 SCSI, ESS ES688, all three ESS PnP AudioDrives, made the wavetables use a separate 44.1 kHz source, and made the Sound Blaster 16 PNP use a proper PNP ROM dump.

This commit is contained in:
OBattler
2024-05-03 17:02:13 +02:00
parent 656591d385
commit 2acb11d37c
47 changed files with 4000 additions and 1343 deletions

View File

@@ -20,6 +20,7 @@
extern "C" {
#include <86box/hdd.h>
#include <86box/scsi.h>
#include <86box/cdrom.h>
}
@@ -109,9 +110,16 @@ Harddrives::populateBusChannels(QAbstractItemModel *model, int bus, SettingsBusT
QList<int> channelsInUse;
switch (bus) {
case HDD_BUS_MFM:
busRows = 2;
busesToCheck.append(HDD_BUS_MFM);
break;
case HDD_BUS_XTA:
busRows = 2;
busesToCheck.append(HDD_BUS_XTA);
break;
case HDD_BUS_ESDI:
busRows = 2;
busesToCheck.append(HDD_BUS_ESDI);
break;
case HDD_BUS_IDE:
busRows = 8;
@@ -126,7 +134,7 @@ Harddrives::populateBusChannels(QAbstractItemModel *model, int bus, SettingsBusT
case HDD_BUS_SCSI:
shifter = 4;
orer = 15;
busRows = 64;
busRows = /*64*/ SCSI_BUS_MAX * SCSI_ID_MAX;
subChannelWidth = 2;
busesToCheck.append(HDD_BUS_SCSI);
break;