|
Last change
on this file since 3c45656 was 3ae31e9, checked in by Thomas Lopatic <thomas@…>, 8 years ago |
|
Imported original source code.
|
-
Property mode
set to
100755
|
|
File size:
647 bytes
|
| Line | |
|---|
| 1 | /*
|
|---|
| 2 | =============================================================================
|
|---|
| 3 | bootsec.h -- {GEM|MS}DOS boot sector structure
|
|---|
| 4 | Version 1 -- 1988-01-27 -- D.N. Lynx Crowe
|
|---|
| 5 | =============================================================================
|
|---|
| 6 | */
|
|---|
| 7 |
|
|---|
| 8 | struct BootSec {
|
|---|
| 9 |
|
|---|
| 10 | char branch[2];
|
|---|
| 11 | char oem[6];
|
|---|
| 12 | char vsn[3];
|
|---|
| 13 | char bps[2]; /* LLHH */
|
|---|
| 14 | char spc;
|
|---|
| 15 | char res[2]; /* LLHH */
|
|---|
| 16 | char nfats;
|
|---|
| 17 | char ndirs[2]; /* LLHH */
|
|---|
| 18 | char nsects[2]; /* LLHH */
|
|---|
| 19 | char media;
|
|---|
| 20 | char spf[2]; /* LLHH */
|
|---|
| 21 | char spt[2]; /* LLHH */
|
|---|
| 22 | char nsides[2]; /* LLHH */
|
|---|
| 23 | char nhid[2]; /* LLHH */
|
|---|
| 24 | char boot[480];
|
|---|
| 25 | char cksum[2]; /* LLHH */
|
|---|
| 26 | };
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.