Removed win_status.c and the related stuff as it was not updated for a while and no longer displayed useful information.

This commit is contained in:
OBattler
2018-04-26 13:33:29 +02:00
parent 040b97bfc1
commit 16a7b1cef2
97 changed files with 186 additions and 940 deletions

View File

@@ -10,7 +10,7 @@
* made by Adaptec, Inc. These controllers were designed for
* the ISA bus.
*
* Version: @(#)scsi_aha154x.c 1.0.40 2018/04/11
* Version: @(#)scsi_aha154x.c 1.0.41 2018/04/26
*
* Authors: Fred N. van Kempen, <decwiz@yahoo.com>
* Original Buslogic version by SA1988 and Miran Grca.
@@ -1113,7 +1113,7 @@ const device_t aha1540b_device = {
DEVICE_ISA | DEVICE_AT,
AHA_154xB,
aha_init, x54x_close, NULL,
NULL, NULL, NULL, NULL,
NULL, NULL, NULL,
aha_154xb_config
};
@@ -1122,7 +1122,7 @@ const device_t aha1542c_device = {
DEVICE_ISA | DEVICE_AT,
AHA_154xC,
aha_init, x54x_close, NULL,
NULL, NULL, NULL, NULL,
NULL, NULL, NULL,
aha_154x_config
};
@@ -1131,7 +1131,7 @@ const device_t aha1542cf_device = {
DEVICE_ISA | DEVICE_AT,
AHA_154xCF,
aha_init, x54x_close, NULL,
NULL, NULL, NULL, NULL,
NULL, NULL, NULL,
aha_154x_config
};
@@ -1140,6 +1140,6 @@ const device_t aha1640_device = {
DEVICE_MCA,
AHA_1640,
aha_init, x54x_close, NULL,
NULL, NULL, NULL, NULL,
NULL, NULL, NULL,
NULL
};

View File

@@ -11,7 +11,7 @@
* 1 - BT-545S ISA;
* 2 - BT-958D PCI
*
* Version: @(#)scsi_buslogic.c 1.0.37 2018/03/28
* Version: @(#)scsi_buslogic.c 1.0.38 2018/04/26
*
* Authors: TheCollector1995, <mariogplayer@gmail.com>
* Miran Grca, <mgrca8@gmail.com>
@@ -1776,7 +1776,7 @@ const device_t buslogic_device = {
DEVICE_ISA | DEVICE_AT,
CHIP_BUSLOGIC_ISA_542,
buslogic_init, x54x_close, NULL,
NULL, NULL, NULL, NULL,
NULL, NULL, NULL,
BT_ISA_Config
};
@@ -1785,7 +1785,7 @@ const device_t buslogic_545s_device = {
DEVICE_ISA | DEVICE_AT,
CHIP_BUSLOGIC_ISA,
buslogic_init, x54x_close, NULL,
NULL, NULL, NULL, NULL,
NULL, NULL, NULL,
BT_ISA_Config
};
@@ -1794,16 +1794,16 @@ const device_t buslogic_640a_device = {
DEVICE_MCA,
CHIP_BUSLOGIC_MCA,
buslogic_init, x54x_close, NULL,
NULL, NULL, NULL, NULL,
NULL, NULL, NULL,
NULL
};
const device_t buslogic_445s_device = {
"Buslogic BT-445S ISA",
"Buslogic BT-445S VLB",
DEVICE_VLB,
CHIP_BUSLOGIC_VLB,
buslogic_init, x54x_close, NULL,
NULL, NULL, NULL, NULL,
NULL, NULL, NULL,
BT_ISA_Config
};
@@ -1812,6 +1812,6 @@ const device_t buslogic_pci_device = {
DEVICE_PCI,
CHIP_BUSLOGIC_PCI,
buslogic_init, x54x_close, NULL,
NULL, NULL, NULL, NULL,
NULL, NULL, NULL,
BT958D_Config
};

View File

@@ -9,7 +9,7 @@
* Implementation of the NCR 5380 series of SCSI Host Adapters
* made by NCR. These controllers were designed for the ISA bus.
*
* Version: @(#)scsi_ncr5380.c 1.0.13 2018/04/11
* Version: @(#)scsi_ncr5380.c 1.0.14 2018/04/26
*
* Authors: Sarah Walker, <http://pcem-emulator.co.uk/>
* TheCollector1995, <mariogplayer@gmail.com>
@@ -1052,7 +1052,7 @@ const device_t scsi_lcs6821n_device =
0,
ncr_init, ncr_close, NULL,
lcs6821n_available,
NULL, NULL, NULL,
NULL, NULL,
NULL
};
@@ -1063,7 +1063,7 @@ const device_t scsi_rt1000b_device =
1,
ncr_init, ncr_close, NULL,
rt1000b_available,
NULL, NULL, NULL,
NULL, NULL,
NULL
};
@@ -1074,7 +1074,7 @@ const device_t scsi_t130b_device =
2,
ncr_init, ncr_close, NULL,
t130b_available,
NULL, NULL, NULL,
NULL, NULL,
NULL
};
@@ -1085,6 +1085,6 @@ const device_t scsi_scsiat_device =
3,
ncr_init, ncr_close, NULL,
scsiat_available,
NULL, NULL, NULL,
NULL, NULL,
scsiat_config
};

View File

@@ -10,7 +10,7 @@
* NCR and later Symbios and LSI. This controller was designed
* for the PCI bus.
*
* Version: @(#)scsi_ncr53c810.c 1.0.11 2018/03/28
* Version: @(#)scsi_ncr53c810.c 1.0.12 2018/04/26
*
* Authors: Paul Brook (QEMU)
* Artyom Tarasenko (QEMU)
@@ -2186,6 +2186,6 @@ const device_t ncr53c810_pci_device =
0,
ncr53c810_init, ncr53c810_close, NULL,
NULL,
NULL, NULL, NULL,
NULL, NULL,
NULL
};