00001 /******************* 00002 *Project: 80X86 32BIT MULTI TASKING OPERATING SYSTEM 00003 *Description:driver for lpt2 00004 * 00005 *File:lptport2.c (I want lpt2.c,but xp doesn't allow) 00006 *Author: Book Chen 00007 *Date: 2010.01.01 00008 ******************** 00009 */ 00010 #include "includes.h" 00011 00012 void Lpt2Init(void){ 00013 //PicIrqDisable(IRQ5_LPT2); 00014 //InterruptIrqHandlerSet(IRQ5_LPT2,Lptport2Handler); 00015 //PicIrqEnable(IRQ5_LPT2); 00016 } 00017 00018 void Lpt2Handler(void){ 00019 // no operation function 00020 }
1.5.9