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:
@@ -8,7 +8,7 @@
|
||||
*
|
||||
* Common code to handle all sorts of disk controllers.
|
||||
*
|
||||
* Version: @(#)hdc.c 1.0.13 2018/04/04
|
||||
* Version: @(#)hdc.c 1.0.14 2018/04/26
|
||||
*
|
||||
* Authors: Miran Grca, <mgrca8@gmail.com>
|
||||
* Fred N. van Kempen, <decwiz@yahoo.com>
|
||||
@@ -48,7 +48,7 @@ null_close(void *priv)
|
||||
static const device_t null_device = {
|
||||
"Null HDC", 0, 0,
|
||||
null_init, null_close, NULL,
|
||||
NULL, NULL, NULL, NULL, NULL
|
||||
NULL, NULL, NULL, NULL
|
||||
};
|
||||
|
||||
|
||||
@@ -68,7 +68,7 @@ inthdc_close(void *priv)
|
||||
static const device_t inthdc_device = {
|
||||
"Internal Controller", 0, 0,
|
||||
inthdc_init, inthdc_close, NULL,
|
||||
NULL, NULL, NULL, NULL, NULL
|
||||
NULL, NULL, NULL, NULL
|
||||
};
|
||||
|
||||
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
*
|
||||
* Driver for the ESDI controller (WD1007-vse1) for PC/AT.
|
||||
*
|
||||
* Version: @(#)hdc_esdi_at.c 1.0.10 2018/04/17
|
||||
* Version: @(#)hdc_esdi_at.c 1.0.11 2018/04/26
|
||||
*
|
||||
* Authors: Sarah Walker, <http://pcem-emulator.co.uk/>
|
||||
* Miran Grca, <mgrca8@gmail.com>
|
||||
@@ -835,6 +835,6 @@ const device_t esdi_at_wd1007vse1_device = {
|
||||
0,
|
||||
wd1007vse1_init, wd1007vse1_close, NULL,
|
||||
wd1007vse1_available,
|
||||
NULL, NULL, NULL,
|
||||
NULL, NULL,
|
||||
NULL
|
||||
};
|
||||
|
||||
@@ -52,7 +52,7 @@
|
||||
* however, are auto-configured by the system software as
|
||||
* shown above.
|
||||
*
|
||||
* Version: @(#)hdc_esdi_mca.c 1.0.11 2018/04/17
|
||||
* Version: @(#)hdc_esdi_mca.c 1.0.12 2018/04/26
|
||||
*
|
||||
* Authors: Sarah Walker, <http://pcem-emulator.co.uk/>
|
||||
* Fred N. van Kempen, <decwiz@yahoo.com>
|
||||
@@ -1086,5 +1086,5 @@ const device_t esdi_ps2_device = {
|
||||
"IBM ESDI Fixed Disk Adapter (MCA)",
|
||||
DEVICE_MCA, 0,
|
||||
esdi_init, esdi_close, NULL,
|
||||
esdi_available, NULL, NULL, NULL, NULL
|
||||
esdi_available, NULL, NULL, NULL
|
||||
};
|
||||
|
||||
@@ -9,7 +9,7 @@
|
||||
* Implementation of the IDE emulation for hard disks and ATAPI
|
||||
* CD-ROM devices.
|
||||
*
|
||||
* Version: @(#)hdc_ide.c 1.0.44 2018/03/26
|
||||
* Version: @(#)hdc_ide.c 1.0.45 2018/04/26
|
||||
*
|
||||
* Authors: Sarah Walker, <http://pcem-emulator.co.uk/>
|
||||
* Miran Grca, <mgrca8@gmail.com>
|
||||
@@ -2812,8 +2812,7 @@ const device_t ide_isa_device = {
|
||||
DEVICE_ISA | DEVICE_AT,
|
||||
0,
|
||||
ide_sainit, ide_saclose, ide_sareset,
|
||||
NULL, NULL, NULL, NULL,
|
||||
NULL
|
||||
NULL, NULL, NULL, NULL
|
||||
};
|
||||
|
||||
const device_t ide_isa_2ch_device = {
|
||||
@@ -2821,8 +2820,7 @@ const device_t ide_isa_2ch_device = {
|
||||
DEVICE_ISA | DEVICE_AT,
|
||||
2,
|
||||
ide_sainit, ide_saclose, ide_sareset,
|
||||
NULL, NULL, NULL, NULL,
|
||||
NULL
|
||||
NULL, NULL, NULL, NULL
|
||||
};
|
||||
|
||||
const device_t ide_isa_2ch_opt_device = {
|
||||
@@ -2830,8 +2828,7 @@ const device_t ide_isa_2ch_opt_device = {
|
||||
DEVICE_ISA | DEVICE_AT,
|
||||
3,
|
||||
ide_sainit, ide_saclose, ide_sareset,
|
||||
NULL, NULL, NULL, NULL,
|
||||
NULL
|
||||
NULL, NULL, NULL, NULL
|
||||
};
|
||||
|
||||
const device_t ide_vlb_device = {
|
||||
@@ -2839,8 +2836,7 @@ const device_t ide_vlb_device = {
|
||||
DEVICE_VLB | DEVICE_AT,
|
||||
4,
|
||||
ide_sainit, ide_saclose, ide_sareset,
|
||||
NULL, NULL, NULL, NULL,
|
||||
NULL
|
||||
NULL, NULL, NULL, NULL
|
||||
};
|
||||
|
||||
const device_t ide_vlb_2ch_device = {
|
||||
@@ -2848,8 +2844,7 @@ const device_t ide_vlb_2ch_device = {
|
||||
DEVICE_VLB | DEVICE_AT,
|
||||
6,
|
||||
ide_sainit, ide_saclose, ide_sareset,
|
||||
NULL, NULL, NULL, NULL,
|
||||
NULL
|
||||
NULL, NULL, NULL, NULL
|
||||
};
|
||||
|
||||
const device_t ide_pci_device = {
|
||||
@@ -2857,8 +2852,7 @@ const device_t ide_pci_device = {
|
||||
DEVICE_PCI | DEVICE_AT,
|
||||
8,
|
||||
ide_sainit, ide_saclose, ide_sareset,
|
||||
NULL, NULL, NULL, NULL,
|
||||
NULL
|
||||
NULL, NULL, NULL, NULL
|
||||
};
|
||||
|
||||
const device_t ide_pci_2ch_device = {
|
||||
@@ -2866,8 +2860,7 @@ const device_t ide_pci_2ch_device = {
|
||||
DEVICE_PCI | DEVICE_AT,
|
||||
10,
|
||||
ide_sainit, ide_saclose, ide_sareset,
|
||||
NULL, NULL, NULL, NULL,
|
||||
NULL
|
||||
NULL, NULL, NULL, NULL
|
||||
};
|
||||
|
||||
static const device_config_t ide_ter_config[] =
|
||||
@@ -2959,7 +2952,7 @@ const device_t ide_ter_device = {
|
||||
DEVICE_AT,
|
||||
0,
|
||||
ide_ter_init, ide_ter_close, NULL,
|
||||
NULL, NULL, NULL, NULL,
|
||||
NULL, NULL, NULL,
|
||||
ide_ter_config
|
||||
};
|
||||
|
||||
@@ -2968,6 +2961,6 @@ const device_t ide_qua_device = {
|
||||
DEVICE_AT,
|
||||
0,
|
||||
ide_qua_init, ide_qua_close, NULL,
|
||||
NULL, NULL, NULL, NULL,
|
||||
NULL, NULL, NULL,
|
||||
ide_qua_config
|
||||
};
|
||||
|
||||
@@ -12,7 +12,7 @@
|
||||
* based design. Most cards were WD1003-WA2 or -WAH, where the
|
||||
* -WA2 cards had a floppy controller as well (to save space.)
|
||||
*
|
||||
* Version: @(#)hdc_mfm_at.c 1.0.14 2018/04/16
|
||||
* Version: @(#)hdc_mfm_at.c 1.0.15 2018/04/26
|
||||
*
|
||||
* Authors: Sarah Walker, <http://pcem-emulator.co.uk/>
|
||||
* Fred N. van Kempen, <decwiz@yahoo.com>
|
||||
@@ -762,5 +762,5 @@ const device_t mfm_at_wd1003_device = {
|
||||
DEVICE_ISA | DEVICE_AT,
|
||||
0,
|
||||
mfm_init, mfm_close, NULL,
|
||||
NULL, NULL, NULL, NULL, NULL
|
||||
NULL, NULL, NULL, NULL
|
||||
};
|
||||
|
||||
@@ -41,7 +41,7 @@
|
||||
* Since all controllers (including the ones made by DTC) use
|
||||
* (mostly) the same API, we keep them all in this module.
|
||||
*
|
||||
* Version: @(#)hdc_mfm_xt.c 1.0.15 2018/04/18
|
||||
* Version: @(#)hdc_mfm_xt.c 1.0.16 2018/04/26
|
||||
*
|
||||
* Authors: Sarah Walker, <http://pcem-emulator.co.uk/>
|
||||
* Fred N. van Kempen, <decwiz@yahoo.com>
|
||||
@@ -869,8 +869,7 @@ const device_t mfm_xt_xebec_device = {
|
||||
DEVICE_ISA,
|
||||
0,
|
||||
xebec_init, mfm_close, NULL,
|
||||
xebec_available, NULL, NULL, NULL,
|
||||
NULL
|
||||
xebec_available, NULL, NULL, NULL
|
||||
};
|
||||
|
||||
|
||||
@@ -924,6 +923,5 @@ const device_t mfm_xt_dtc5150x_device = {
|
||||
DEVICE_ISA,
|
||||
0,
|
||||
dtc5150x_init, mfm_close, NULL,
|
||||
dtc5150x_available, NULL, NULL, NULL,
|
||||
NULL
|
||||
dtc5150x_available, NULL, NULL, NULL
|
||||
};
|
||||
|
||||
@@ -46,7 +46,7 @@
|
||||
*
|
||||
* NOTE: The XTA interface is 0-based for sector numbers !!
|
||||
*
|
||||
* Version: @(#)hdc_ide_xta.c 1.0.5 2018/04/26
|
||||
* Version: @(#)hdc_ide_xta.c 1.0.6 2018/04/26
|
||||
*
|
||||
* Author: Fred N. van Kempen, <decwiz@yahoo.com>
|
||||
*
|
||||
@@ -1207,7 +1207,7 @@ const device_t xta_wdxt150_device = {
|
||||
DEVICE_ISA,
|
||||
0,
|
||||
xta_init, xta_close, NULL,
|
||||
NULL, NULL, NULL, NULL,
|
||||
NULL, NULL, NULL,
|
||||
wdxt150_config
|
||||
};
|
||||
|
||||
@@ -1217,6 +1217,6 @@ const device_t xta_hd20_device = {
|
||||
DEVICE_ISA,
|
||||
1,
|
||||
xta_init, xta_close, NULL,
|
||||
NULL, NULL, NULL, NULL,
|
||||
NULL, NULL, NULL,
|
||||
NULL
|
||||
};
|
||||
|
||||
@@ -21,7 +21,7 @@
|
||||
* already on their way out, the newer IDE standard based on the
|
||||
* PC/AT controller and 16b design became the IDE we now know.
|
||||
*
|
||||
* Version: @(#)hdc_xtide.c 1.0.12 2018/04/05
|
||||
* Version: @(#)hdc_xtide.c 1.0.13 2018/04/26
|
||||
*
|
||||
* Authors: Sarah Walker, <http://pcem-emulator.co.uk/>
|
||||
* Miran Grca, <mgrca8@gmail.com>
|
||||
@@ -252,7 +252,7 @@ const device_t xtide_device = {
|
||||
DEVICE_ISA,
|
||||
0,
|
||||
xtide_init, xtide_close, NULL,
|
||||
xtide_available, NULL, NULL, NULL,
|
||||
xtide_available, NULL, NULL,
|
||||
NULL
|
||||
};
|
||||
|
||||
@@ -261,7 +261,7 @@ const device_t xtide_at_device = {
|
||||
DEVICE_ISA | DEVICE_AT,
|
||||
0,
|
||||
xtide_at_init, xtide_at_close, NULL,
|
||||
xtide_at_available, NULL, NULL, NULL,
|
||||
xtide_at_available, NULL, NULL,
|
||||
NULL
|
||||
};
|
||||
|
||||
@@ -270,7 +270,7 @@ const device_t xtide_acculogic_device = {
|
||||
DEVICE_ISA,
|
||||
0,
|
||||
xtide_acculogic_init, xtide_close, NULL,
|
||||
xtide_acculogic_available, NULL, NULL, NULL,
|
||||
xtide_acculogic_available, NULL, NULL,
|
||||
NULL
|
||||
};
|
||||
|
||||
@@ -279,6 +279,6 @@ const device_t xtide_at_ps2_device = {
|
||||
DEVICE_ISA | DEVICE_PS2,
|
||||
0,
|
||||
xtide_at_ps2_init, xtide_at_close, NULL,
|
||||
xtide_at_ps2_available, NULL, NULL, NULL,
|
||||
xtide_at_ps2_available, NULL, NULL,
|
||||
NULL
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user