From a18382111660fbc1937d8b55697192e7b9ef7b02 Mon Sep 17 00:00:00 2001 From: Harley Travis Date: Wed, 10 Jun 2026 19:34:22 -0500 Subject: Create BlkDevInitFDC.HC 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. --- Kernel/Patches/BlkDevInitFDC.HC | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 Kernel/Patches/BlkDevInitFDC.HC diff --git a/Kernel/Patches/BlkDevInitFDC.HC b/Kernel/Patches/BlkDevInitFDC.HC new file mode 100644 index 0000000..3fbe709 --- /dev/null +++ b/Kernel/Patches/BlkDevInitFDC.HC @@ -0,0 +1,4 @@ +case BDT_FLOPPY: + bd->max_writes=bd->max_reads=bd->spt; + res=FDCInit(bd); + break; \ No newline at end of file -- cgit v1.2.3