blob: 3f01bdb7e7a1ad4fa8e2106353ada8e30d6186e2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/*
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.
*/
// PATCH: Adds a buf for floppy DMA xfers.
// FILE: ::/Kernel/KStart32.HC
// TO INSTALL: #include this file at the end.
//U8 FDC_DMA[0x4800]; // Floppy DMA buffer
U8 FDC_DMA[0x2400]; // Smaller buffer for one-track-at-a-time ops
|