summaryrefslogtreecommitdiff
path: root/v4.0/src/BIOS/MSDSKPR.INC
diff options
context:
space:
mode:
authorGravatar Mark Zbikowski2024-04-25 21:24:10 +0100
committerGravatar Microsoft Open Source2024-04-25 22:32:27 +0000
commit2d04cacc5322951f187bb17e017c12920ac8ebe2 (patch)
tree80ee017efa878dfd5344b44249e6a241f2a7f6e2 /v4.0/src/BIOS/MSDSKPR.INC
parentMerge pull request #430 from jpbaltazar/typoptbr (diff)
downloadms-dos-main.tar.gz
ms-dos-main.tar.xz
ms-dos-main.zip
MZ is back!HEADmain
Diffstat (limited to 'v4.0/src/BIOS/MSDSKPR.INC')
-rw-r--r--v4.0/src/BIOS/MSDSKPR.INC22
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
4DISK_PARMS STRUC
5DISK_SPECIFY_1 DB ?
6DISK_SPECIFY_2 DB ?
7DISK_MOTOR_WAIT DB ? ; Wait till motor off
8DISK_SECTOR_SIZ DB ? ; Bytes/Sector (2 = 512)
9DISK_EOT DB ? ; Sectors per track (MAX)
10DISK_RW_GAP DB ? ; Read Write Gap
11DISK_DTL DB ?
12DISK_FORMT_GAP DB ? ; Format Gap Length
13DISK_FILL DB ? ; Format Fill Byte
14DISK_HEAD_STTL DB ? ; Head Settle Time (MSec)
15DISK_MOTOR_STRT DB ? ; Motor start delay
16DISK_PARMS ENDS
17
18ROMStatus equ 1
19ROMRead equ 2
20ROMWrite equ 3
21ROMVerify equ 4
22ROMFormat equ 5