diff options
| author | 2024-04-25 21:24:10 +0100 | |
|---|---|---|
| committer | 2024-04-25 22:32:27 +0000 | |
| commit | 2d04cacc5322951f187bb17e017c12920ac8ebe2 (patch) | |
| tree | 80ee017efa878dfd5344b44249e6a241f2a7f6e2 /v4.0/src/BIOS/MSDSKPR.INC | |
| parent | Merge pull request #430 from jpbaltazar/typoptbr (diff) | |
| download | ms-dos-main.tar.gz ms-dos-main.tar.xz ms-dos-main.zip | |
Diffstat (limited to 'v4.0/src/BIOS/MSDSKPR.INC')
| -rw-r--r-- | v4.0/src/BIOS/MSDSKPR.INC | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/v4.0/src/BIOS/MSDSKPR.INC b/v4.0/src/BIOS/MSDSKPR.INC new file mode 100644 index 0000000..6b24bff --- /dev/null +++ b/v4.0/src/BIOS/MSDSKPR.INC | |||
| @@ -0,0 +1,22 @@ | |||
| 1 | ; The following structure defines the disk parameter table | ||
| 2 | ; pointed to by Interrupt vector 1EH (location 0:78H) | ||
| 3 | |||
| 4 | DISK_PARMS STRUC | ||
| 5 | DISK_SPECIFY_1 DB ? | ||
| 6 | DISK_SPECIFY_2 DB ? | ||
| 7 | DISK_MOTOR_WAIT DB ? ; Wait till motor off | ||
| 8 | DISK_SECTOR_SIZ DB ? ; Bytes/Sector (2 = 512) | ||
| 9 | DISK_EOT DB ? ; Sectors per track (MAX) | ||
| 10 | DISK_RW_GAP DB ? ; Read Write Gap | ||
| 11 | DISK_DTL DB ? | ||
| 12 | DISK_FORMT_GAP DB ? ; Format Gap Length | ||
| 13 | DISK_FILL DB ? ; Format Fill Byte | ||
| 14 | DISK_HEAD_STTL DB ? ; Head Settle Time (MSec) | ||
| 15 | DISK_MOTOR_STRT DB ? ; Motor start delay | ||
| 16 | DISK_PARMS ENDS | ||
| 17 | |||
| 18 | ROMStatus equ 1 | ||
| 19 | ROMRead equ 2 | ||
| 20 | ROMWrite equ 3 | ||
| 21 | ROMVerify equ 4 | ||
| 22 | ROMFormat equ 5 | ||