diff options
| author | Harley Travis <harleytravis123@outlook.com> | 2026-06-27 15:22:13 -0500 |
|---|---|---|
| committer | Harley Travis <harleytravis123@outlook.com> | 2026-06-27 15:22:13 -0500 |
| commit | 746ae4fbe410af61845d85ea648dcedb88e9f5a2 (patch) | |
| tree | 6e7ce11367e4b94343dd44389fbe94287ca0bd0d | |
| parent | 2e0a342b312ac533d45ec866fed1ea9f4fd59774 (diff) | |
| download | templeos-floppy-driver-746ae4fbe410af61845d85ea648dcedb88e9f5a2.tar.gz | |
Update KFloppyA.HH
I fixed some indentation in this header file and added definitions for the check codes used by FDCChk.
| -rw-r--r-- | Kernel/KFloppyA.HH | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/Kernel/KFloppyA.HH b/Kernel/KFloppyA.HH index 3ea272d..0882aa6 100644 --- a/Kernel/KFloppyA.HH +++ b/Kernel/KFloppyA.HH @@ -143,4 +143,9 @@ #define FDC_500_KBIT 0 #define FDC_300_KBIT 1 #define FDC_250_KBIT 2 -#define FDC_1_MBIT 3 +#define FDC_1_MBIT 3 + +// Check Codes (used by FDCChk) +#define FDC_CHK_ERR 0 +#define FDC_CHK_SS 1 +#define FDC_CHK_DS 2 |
