diff options
| author | Steve Passe <fsmp@FreeBSD.org> | 1997-08-21 05:19:26 +0000 |
|---|---|---|
| committer | Steve Passe <fsmp@FreeBSD.org> | 1997-08-21 05:19:26 +0000 |
| commit | 201ef2f3f3c44244289c1e184539d3dfbf8c41f2 (patch) | |
| tree | 924596a3f9b3e71415df3507765841967ede3ac9 | |
| parent | fcdf862ccabe09bc521d6ae5a647a98a36364966 (diff) | |
Notes
| -rw-r--r-- | sys/i386/isa/ipl.s | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/sys/i386/isa/ipl.s b/sys/i386/isa/ipl.s index 3b2bf73dfa27..82ca3b94d91b 100644 --- a/sys/i386/isa/ipl.s +++ b/sys/i386/isa/ipl.s @@ -36,7 +36,7 @@ * * @(#)ipl.s * - * $Id: ipl.s,v 1.8 1997/08/10 21:17:55 fsmp Exp $ + * $Id: ipl.s,v 1.8 1997/08/20 19:46:22 smp Exp $ */ @@ -52,6 +52,10 @@ .globl _cpl _cpl: .long HWI_MASK | SWI_MASK +/* current INTerrupt level */ + .globl _cil +_cil: .long 0 + #ifndef APIC_IO /* interrupt mask enable (all h/w off) */ .globl _imen |
