blob: 877beecd2a2bc497692a215847faae10c1c63258 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef DOS_H_INCLUDED
#define DOS_H_INCLUDED
struct partition {
unsigned char boot_ind; /* 0x80 - active */
unsigned char bh, bs, bc;
unsigned char sys_type;
unsigned char eh, es, ec;
unsigned char start_sect[4];
unsigned char nr_sects[4];
};
#endif /* DOS_H_INCLUDED */
|