Translate

Labels

Friday 7 June 2013

PROGRAM FOR RESETTING THE FDC IC (FLOPPY DISK CONTROLLER)

#include #include #include void main(void) 
 {
 clrscr();
 union REGS regs;
 regs.h.ah = 0; 


 regs.h.dl = 0x80;
 int86(0x13,&regs,&regs);
 getch();
 }

No comments: