summaryrefslogtreecommitdiff
path: root/Kernel
diff options
context:
space:
mode:
authorHarley Travis <harleytravis123@outlook.com>2026-06-04 23:39:03 -0500
committerHarley Travis <harleytravis123@outlook.com>2026-06-04 23:39:03 -0500
commit4ab5e23c8d14cd9866b8cc53ef2e4074c43221b2 (patch)
tree5aaf777da8475bc2f807a477861e3e5a488b3c8a /Kernel
parentce1a965fec0cbd17e52abff9aaa90c79e2009f81 (diff)
downloadtempleos-floppy-driver-4ab5e23c8d14cd9866b8cc53ef2e4074c43221b2.tar.gz
Update KFloppyDMA.HC
I halved the size of the DMA buffer in keeping with the "one track at a time" methodology I have adopted.
Diffstat (limited to 'Kernel')
-rw-r--r--Kernel/KFloppyDMA.HC4
1 files changed, 3 insertions, 1 deletions
diff --git a/Kernel/KFloppyDMA.HC b/Kernel/KFloppyDMA.HC
index 12f4953..ce673cf 100644
--- a/Kernel/KFloppyDMA.HC
+++ b/Kernel/KFloppyDMA.HC
@@ -4,4 +4,6 @@
License. See the Copying.TXT file for details.
*/
-U8 FDC_DMA[0x4800]; // Floppy DMA buffer
+//U8 FDC_DMA[0x4800]; // Floppy DMA buffer
+
+U8 FDC_DMA[0x2400]; // Smaller buffer for one-track-at-a-time ops \ No newline at end of file