1 ; 2 ; ints - Extra DOS Interrupt Control 3 ; 4 ; Copyright (C) 1984-2003 David L. Clark. 5 ; This program is free software; you can redistribute it and/or modify it under 6 ; the terms of the GNU General Public License as published by the Free Software 7 ; Foundation; either version 2 of the License, or (at your option) any later 8 ; version. This program is distributed in the hope that it will be useful, 9 ; but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY 10 ; or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for 11 ; more details. You should have received a copy of the GNU General Public 12 ; License along with this program; if not, write to the Free Software Foundation, 13 ; Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. ; 14 ; Author: Dave Clark 15 ; 16 ; Modification History: 17 ; 84-03-06 Development 18 ; 87-03-10 Microsoft compiler 19 ; 94-12-18 C6 Compiler 20 ; 2003-01-27 GNU General Public License 21 ; 22 23 % .MODEL model,lang 24 INCLUDE mixed.inc 25 26 .CODE 27 28 include segments.h 29 30 public intson 31 public intsoff 32 33 34 intson: 35 sti 36 ret 37 38 intsoff: 39 cli 40 ret 41 42 end 43 ÿ