summaryrefslogtreecommitdiff
path: root/Kernel/Patches/BlkDevInitFDC.HC
blob: 630bad82a209772a83b855ac11a38bed880354bd (plain)
1
2
3
4
5
6
7
8
// PATCH: Add the ability to init floppy BlkDevs
// FILE: ::/Kernel/BlkDev/DskBlkDev.HC
// TO INSTALL: #include this file at the end of the switch statement.

case BDT_FLOPPY:
  bd->max_writes=bd->max_reads=bd->spt;
  res=FDCInit(bd);
  break;