24 lines
321 B
C
24 lines
321 B
C
//fdc.h
|
|
//Author: Josh Holtrop
|
|
//Date: 10/30/03
|
|
//Modified: 02/26/04
|
|
|
|
#ifndef __HOS_FDC__
|
|
#define __HOS_FDC__ __HOS_FDC__
|
|
|
|
#include "sys/io.h"
|
|
|
|
#define FDC_DOR 0x3f2
|
|
#define FDC_MSR 0x3f4
|
|
|
|
inline void fdc_sendDOR(byte dor);
|
|
|
|
inline void fdc_sendDOR(byte dor)
|
|
{
|
|
outportb(FDC_DOR, dor);
|
|
}
|
|
|
|
#endif
|
|
|
|
|