blob: 4c076568fe3b26e77364adc7db81a8d8c569e023 (
plain)
1
2
3
4
5
6
7
8
9
|
// PURPOSE: Floppy disk IRQ handler
// TO INSTALL: #include this file after the floppy header files in Kernel.PRJ.
interrupt U0 IRQ_FDC()
{
// On IRQ6, set a semaphore for anything waiting for an FDC int
fdc_int_semaphore = TRUE;
OutU8(0x20,0x20); // Send EOI to PIC
}
|