Even more cleanups. Also renamed hdd/ to disk/ as that makes more sense. Machines with an Internal HDC (usually IDE) can now also select an alternative one instead.
This commit is contained in:
177
src/disk/hdd_table.c
Normal file
177
src/disk/hdd_table.c
Normal file
@@ -0,0 +1,177 @@
|
||||
/*
|
||||
* 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 IDE emulation for hard disks and ATAPI
|
||||
* CD-ROM devices.
|
||||
*
|
||||
* Version: @(#)hdd_table.c 1.0.3 2017/09/30
|
||||
*
|
||||
* Authors: Miran Grca, <mgrca8@gmail.com>
|
||||
* Fred N. van Kempen, <decwiz@yahoo.com>
|
||||
* Copyright 2016,2017 Miran Grca.
|
||||
* Copyright 2017 Fred N. van Kempen.
|
||||
*/
|
||||
#include <stdio.h>
|
||||
#include <stdint.h>
|
||||
#include <string.h>
|
||||
#include <stdarg.h>
|
||||
#include <wchar.h>
|
||||
#include "../86box.h"
|
||||
#include "../ibm.h"
|
||||
#include "../io.h"
|
||||
#include "../pic.h"
|
||||
#include "../pci.h"
|
||||
#include "../timer.h"
|
||||
#include "hdd.h"
|
||||
|
||||
|
||||
uint64_t hdd_table[128][3] = {
|
||||
{ 306, 4, 17 }, /* 0 - 7 */
|
||||
{ 615, 2, 17 },
|
||||
{ 306, 4, 26 },
|
||||
{ 1024, 2, 17 },
|
||||
{ 697, 3, 17 },
|
||||
{ 306, 8, 17 },
|
||||
{ 614, 4, 17 },
|
||||
{ 615, 4, 17 },
|
||||
|
||||
{ 670, 4, 17 }, /* 8 - 15 */
|
||||
{ 697, 4, 17 },
|
||||
{ 987, 3, 17 },
|
||||
{ 820, 4, 17 },
|
||||
{ 670, 5, 17 },
|
||||
{ 697, 5, 17 },
|
||||
{ 733, 5, 17 },
|
||||
{ 615, 6, 17 },
|
||||
|
||||
{ 462, 8, 17 }, /* 016-023 */
|
||||
{ 306, 8, 26 },
|
||||
{ 615, 4, 26 },
|
||||
{ 1024, 4, 17 },
|
||||
{ 855, 5, 17 },
|
||||
{ 925, 5, 17 },
|
||||
{ 932, 5, 17 },
|
||||
{ 1024, 2, 40 },
|
||||
|
||||
{ 809, 6, 17 }, /* 024-031 */
|
||||
{ 976, 5, 17 },
|
||||
{ 977, 5, 17 },
|
||||
{ 698, 7, 17 },
|
||||
{ 699, 7, 17 },
|
||||
{ 981, 5, 17 },
|
||||
{ 615, 8, 17 },
|
||||
{ 989, 5, 17 },
|
||||
|
||||
{ 820, 4, 26 }, /* 032-039 */
|
||||
{ 1024, 5, 17 },
|
||||
{ 733, 7, 17 },
|
||||
{ 754, 7, 17 },
|
||||
{ 733, 5, 26 },
|
||||
{ 940, 6, 17 },
|
||||
{ 615, 6, 26 },
|
||||
{ 462, 8, 26 },
|
||||
|
||||
{ 830, 7, 17 }, /* 040-047 */
|
||||
{ 855, 7, 17 },
|
||||
{ 751, 8, 17 },
|
||||
{ 1024, 4, 26 },
|
||||
{ 918, 7, 17 },
|
||||
{ 925, 7, 17 },
|
||||
{ 855, 5, 26 },
|
||||
{ 977, 7, 17 },
|
||||
|
||||
{ 987, 7, 17 }, /* 048-055 */
|
||||
{ 1024, 7, 17 },
|
||||
{ 823, 4, 38 },
|
||||
{ 925, 8, 17 },
|
||||
{ 809, 6, 26 },
|
||||
{ 976, 5, 26 },
|
||||
{ 977, 5, 26 },
|
||||
{ 698, 7, 26 },
|
||||
|
||||
{ 699, 7, 26 }, /* 056-063 */
|
||||
{ 940, 8, 17 },
|
||||
{ 615, 8, 26 },
|
||||
{ 1024, 5, 26 },
|
||||
{ 733, 7, 26 },
|
||||
{ 1024, 8, 17 },
|
||||
{ 823, 10, 17 },
|
||||
{ 754, 11, 17 },
|
||||
|
||||
{ 830, 10, 17 }, /* 064-071 */
|
||||
{ 925, 9, 17 },
|
||||
{ 1224, 7, 17 },
|
||||
{ 940, 6, 26 },
|
||||
{ 855, 7, 26 },
|
||||
{ 751, 8, 26 },
|
||||
{ 1024, 9, 17 },
|
||||
{ 965, 10, 17 },
|
||||
|
||||
{ 969, 5, 34 }, /* 072-079 */
|
||||
{ 980, 10, 17 },
|
||||
{ 960, 5, 35 },
|
||||
{ 918, 11, 17 },
|
||||
{ 1024, 10, 17 },
|
||||
{ 977, 7, 26 },
|
||||
{ 1024, 7, 26 },
|
||||
{ 1024, 11, 17 },
|
||||
|
||||
{ 940, 8, 26 }, /* 080-087 */
|
||||
{ 776, 8, 33 },
|
||||
{ 755, 16, 17 },
|
||||
{ 1024, 12, 17 },
|
||||
{ 1024, 8, 26 },
|
||||
{ 823, 10, 26 },
|
||||
{ 830, 10, 26 },
|
||||
{ 925, 9, 26 },
|
||||
|
||||
{ 960, 9, 26 }, /* 088-095 */
|
||||
{ 1024, 13, 17 },
|
||||
{ 1224, 11, 17 },
|
||||
{ 900, 15, 17 },
|
||||
{ 969, 7, 34 },
|
||||
{ 917, 15, 17 },
|
||||
{ 918, 15, 17 },
|
||||
{ 1524, 4, 39 },
|
||||
|
||||
{ 1024, 9, 26 }, /* 096-103 */
|
||||
{ 1024, 14, 17 },
|
||||
{ 965, 10, 26 },
|
||||
{ 980, 10, 26 },
|
||||
{ 1020, 15, 17 },
|
||||
{ 1023, 15, 17 },
|
||||
{ 1024, 15, 17 },
|
||||
{ 1024, 16, 17 },
|
||||
|
||||
{ 1224, 15, 17 }, /* 104-111 */
|
||||
{ 755, 16, 26 },
|
||||
{ 903, 8, 46 },
|
||||
{ 984, 10, 34 },
|
||||
{ 900, 15, 26 },
|
||||
{ 917, 15, 26 },
|
||||
{ 1023, 15, 26 },
|
||||
{ 684, 16, 38 },
|
||||
|
||||
{ 1930, 4, 62 }, /* 112-119 */
|
||||
{ 967, 16, 31 },
|
||||
{ 1013, 10, 63 },
|
||||
{ 1218, 15, 36 },
|
||||
{ 654, 16, 63 },
|
||||
{ 659, 16, 63 },
|
||||
{ 702, 16, 63 },
|
||||
{ 1002, 13, 63 },
|
||||
|
||||
{ 854, 16, 63 }, /* 119-127 */
|
||||
{ 987, 16, 63 },
|
||||
{ 995, 16, 63 },
|
||||
{ 1024, 16, 63 },
|
||||
{ 1036, 16, 63 },
|
||||
{ 1120, 16, 59 },
|
||||
{ 1054, 16, 63 },
|
||||
{ 0, 0, 0 }
|
||||
};
|
||||
Reference in New Issue
Block a user