00001 /* 00002 * This program is free software; you can redistribute it and/or 00003 * modify it under the terms of the GNU General Public License 00004 * as published by the Free Software Foundation; either version 00005 * 2 of the License, or (at your option) any later version. 00006 * 00007 * Copyright 2006 Spiro Trikaliotis 00008 * 00009 */ 00010 00020 #include <wdm.h> 00021 #include "cbm_driver.h" 00022 00028 VOID 00029 CLI(VOID) 00030 { 00031 __asm cli 00032 } 00033 00039 VOID 00040 STI(VOID) 00041 { 00042 __asm sti 00043 }
1.4.2