From 4ab5e23c8d14cd9866b8cc53ef2e4074c43221b2 Mon Sep 17 00:00:00 2001 From: Harley Travis Date: Thu, 4 Jun 2026 23:39:03 -0500 Subject: Update KFloppyDMA.HC I halved the size of the DMA buffer in keeping with the "one track at a time" methodology I have adopted. --- Kernel/KFloppyDMA.HC | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'Kernel') 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 -- cgit v1.2.3