diff options
author | rgrimes <rgrimes@FreeBSD.org> | 1993-11-14 02:27:22 +0000 |
---|---|---|
committer | rgrimes <rgrimes@FreeBSD.org> | 1993-11-14 02:27:22 +0000 |
commit | 3593da9033be0c8cd570c43eb5e25e32964141e0 (patch) | |
tree | 70dc579f813611ea7b079f984630e50c0fc08ade /sys/i386 | |
parent | 93f6cc5abd27a944e4444c2c0235b7e3a71f5c43 (diff) | |
download | FreeBSD-src-3593da9033be0c8cd570c43eb5e25e32964141e0.zip FreeBSD-src-3593da9033be0c8cd570c43eb5e25e32964141e0.tar.gz |
Add _bde_exists: label so that the global is really defined. Fix spelling
error (mount -> amount)
Diffstat (limited to 'sys/i386')
-rw-r--r-- | sys/i386/i386/locore.s | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/i386/i386/locore.s b/sys/i386/i386/locore.s index 4b4e36f..3d07190 100644 --- a/sys/i386/i386/locore.s +++ b/sys/i386/i386/locore.s @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * from: @(#)locore.s 7.3 (Berkeley) 5/13/91 - * $Id$ + * $Id: locore.s,v 1.10 1993/11/13 02:25:00 davidg Exp $ */ /* @@ -128,7 +128,7 @@ _proc0paddr: .long 0 /* address of proc 0 address space */ #ifdef BDE_DEBUGGER .globl _bdb_exists /* flag to indicate BDE debugger is available */ - .long 0 +_bde_exists: .long 0 #endif .globl tmpstk @@ -220,7 +220,7 @@ ENTRY(btext) /* clear bss */ movl $_edata-KERNBASE,%edi - subl %edi,%ecx /* get mount to clear */ + subl %edi,%ecx /* get amount to clear */ xorl %eax,%eax /* specify zero fill */ cld rep |