summaryrefslogtreecommitdiff
path: root/Kernel/Patches
AgeCommit message (Collapse)Author
2026-06-12Move KFloppyDMA.HC to Kernel/PatchesHarley Travis
Since this file is effectively a patch to KStart32, it makes sense to keep it in the Patches subdirectory.
2026-06-12Adjust tabs in KernelABDTs.HHHarley Travis
2026-06-12Remove stray empty line from CBlkDevFDC.HCHarley Travis
2026-06-10Create Let2BlkDevTypeFDC.HCHarley Travis
This file patches Let2BlkDevType to provide drive letters for floppy drives. The original function is to be commented out and this file included in its place.
2026-06-10Create BlkDevInitFDC.HCHarley Travis
This file adds a case to BlkDevInit for the floppy BDT, allowing it to be initialized. It is to be placed after the last case in the function's switch statement.
2026-06-06Update BlkDevAddFDC.HCHarley Travis
The BlkDevAdd code now checks if the floppy disk has a valid RedSea boot sector before attempting to initialize it.
2026-06-06Update BlkDevAddFDC.HCHarley Travis
BlkDevAdd should set drv_offset to 0 (since the BlkDev's drv_offset will also be zero; floppies don't have a partition table), so I removed the forced-set to 0 in the code.
2026-06-06Create BlkDevAddFDC.HCHarley Travis
This file adds code for handling floppy block devices to the BlkDevAdd function. It is to be included at the end of the function's switch statement.
2026-06-06Create KDefineBDTs.HCHarley Travis
This file replaces the DefineLstLoad call that sets ST_BLKDEV_TYPES to add the FDC type. The original code is to be commented out and this file included after it.
2026-06-06Create KernelABDTs.HHHarley Travis
This file replaces the block device type list in KernelA.HH. The original code is to be commented out and this file included after it.
2026-06-01Update CBlkDevFDC.HCHarley Travis
DMA will always be used, so I have removed the DMA flag from CBlkDev.
2026-05-31Initial commit for BlkDev branchHarley Travis
This is the initial commit for the BlkDev-ified driver. It is not at all in a working state at this point, and the old files have been left for reference purposes.