From ea3fdf9260d3093ac6990ea617a02330e596f8de Mon Sep 17 00:00:00 2001 From: OBattler Date: Mon, 24 Sep 2018 15:20:17 +0200 Subject: [PATCH] Fixed IDE_NUM in disk/hdc.h, now the ide_drives array again accomodates for XTIDE. --- src/disk/hdc.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/disk/hdc.h b/src/disk/hdc.h index 89e34a1d9..3f8e0f8e3 100644 --- a/src/disk/hdc.h +++ b/src/disk/hdc.h @@ -8,7 +8,7 @@ * * Definitions for the common disk controller handler. * - * Version: @(#)hdc.h 1.0.8 2018/04/05 + * Version: @(#)hdc.h 1.0.9 2018/09/24 * * Authors: Miran Grca, * Fred N. van Kempen, @@ -23,7 +23,7 @@ #define MFM_NUM 2 /* 2 drives per controller supported */ #define ESDI_NUM 2 /* 2 drives per controller supported */ #define XTA_NUM 2 /* 2 drives per controller supported */ -#define IDE_NUM 8 +#define IDE_NUM 10 /* 8 drives per AT IDE + 2 for XT IDE */ #define SCSI_NUM 16 /* theoretically the controller can have at * least 7 devices, with each device being * able to support 8 units, but hey... */