diff options
| author | Harley Travis <harleytravis123@outlook.com> | 2026-06-04 23:39:03 -0500 |
|---|---|---|
| committer | Harley Travis <harleytravis123@outlook.com> | 2026-06-04 23:39:03 -0500 |
| commit | 4ab5e23c8d14cd9866b8cc53ef2e4074c43221b2 (patch) | |
| tree | 5aaf777da8475bc2f807a477861e3e5a488b3c8a /Kernel | |
| parent | ce1a965fec0cbd17e52abff9aaa90c79e2009f81 (diff) | |
| download | templeos-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.HC | 4 |
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 |
