summaryrefslogtreecommitdiff
path: root/Kernel/KFloppyB.HH
diff options
context:
space:
mode:
authorHarley Travis <harleytravis123@outlook.com>2026-06-18 21:13:15 -0500
committerHarley Travis <harleytravis123@outlook.com>2026-06-18 21:13:15 -0500
commit7588921f9b010c5bd246b893547ea3f5189adaff (patch)
tree68cfe1a83880a5d11142a3855dd3bd48aefb5430 /Kernel/KFloppyB.HH
parent6854705470bb6f3d468b523a4bf1592f467dabe1 (diff)
downloadtempleos-floppy-driver-7588921f9b010c5bd246b893547ea3f5189adaff.tar.gz
Delete old driver code
The time has finally come for the old code to be removed from the source tree.
Diffstat (limited to 'Kernel/KFloppyB.HH')
-rw-r--r--Kernel/KFloppyB.HH25
1 files changed, 0 insertions, 25 deletions
diff --git a/Kernel/KFloppyB.HH b/Kernel/KFloppyB.HH
deleted file mode 100644
index 76f6859..0000000
--- a/Kernel/KFloppyB.HH
+++ /dev/null
@@ -1,25 +0,0 @@
-/*
- Copyright (C) 2025-2026 Harley Travis <yoshi128k@gmail.com>.
- This software (including source code) is licensed under the BSD Zero Clause
- License. See the Copying.TXT file for details.
-*/
-
-// headers for floppy driver
-public extern Bool FDCIrq;
-public extern U16 fdc_base;
-public extern U0 CMOSGetFloppyDrives();
-public extern U0 FDCSendCmd(U16 base, U8 cmd);
-public extern U8 FDCReadData(U16 base);
-public extern U0 FDCCheckInt(U16 base, U8 *st0, U8 *cyl);
-public extern I16 fdc_mtr_ticks;
-public extern U8 fdc_mtr_state;
-public extern U0 FDCMotorOff(U16 base);
-public extern U0 FDCMotorPwrOffTimer();
-public extern U0 FDCMotorCtrl(U16 base, Bool onoff);
-public extern I8 FDCRecalibrate(U16 base);
-public extern I8 FDCReset(U16 base);
-public extern I8 FDCSeek(U16 base, U8 cyli, U8 head);
-public extern U0 FDCRead(U16 base, U8 cyl, U8 head, U8 sect, U8 trklen);
-public extern U0 FDCReadMulti(U16 base, U8 cyl, U8 head, U8 sect, U8 trklen);
-public extern U0 FDCWrite(U16 base, U8 cyl, U8 head, U8 sect, U8 trklen);
-public extern U0 FDCWriteMulti(U16 base, U8 cyl, U8 head, U8 sect, U8 trklen);