fa59fc6eb4
Headers that will be shared between old includes and NetBSD-like includes are moved into common/include tree. They are still copied in /usr/include in 'make includes', so compilation and programs aren't be affected.
20 lines
458 B
C
20 lines
458 B
C
/* PC (and AT) BIOS structure to hold disk parameters. Under Minix, it is
|
|
* used mainly for formatting.
|
|
*/
|
|
|
|
#ifndef _DISKPARM_H
|
|
#define _DISKPARM_H
|
|
struct disk_parameter_s {
|
|
char spec1;
|
|
char spec2;
|
|
char motor_turnoff_sec;
|
|
char sector_size_code;
|
|
char sectors_per_cylinder;
|
|
char gap_length;
|
|
char dtl;
|
|
char gap_length_for_format;
|
|
char fill_byte_for_format;
|
|
char head_settle_msec;
|
|
char motor_start_eigth_sec;
|
|
};
|
|
#endif /* _DISKPARM_H */
|