Deleted Added
full compact
locore.S (13081) locore.S (13228)
1/*-
2 * Copyright (c) 1990 The Regents of the University of California.
3 * All rights reserved.
4 *
5 * This code is derived from software contributed to Berkeley by
6 * William Jolitz.
7 *
8 * Redistribution and use in source and binary forms, with or without

--- 20 unchanged lines hidden (view full) ---

29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 * SUCH DAMAGE.
35 *
36 * from: @(#)locore.s 7.3 (Berkeley) 5/13/91
1/*-
2 * Copyright (c) 1990 The Regents of the University of California.
3 * All rights reserved.
4 *
5 * This code is derived from software contributed to Berkeley by
6 * William Jolitz.
7 *
8 * Redistribution and use in source and binary forms, with or without

--- 20 unchanged lines hidden (view full) ---

29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 * SUCH DAMAGE.
35 *
36 * from: @(#)locore.s 7.3 (Berkeley) 5/13/91
37 * $Id: locore.s,v 1.58 1995/12/25 14:40:49 davidg Exp $
37 * $Id: locore.s,v 1.59 1995/12/28 21:01:54 davidg Exp $
38 */
39
40/*
41 * locore.s: FreeBSD machine support for the Intel 386
42 * originally from: locore.s, by William F. Jolitz
43 *
44 * Substantially rewritten by David Greenman, Rod Grimes,
45 * Bruce Evans, Wolfgang Solfrank, and many others.
46 */
47
38 */
39
40/*
41 * locore.s: FreeBSD machine support for the Intel 386
42 * originally from: locore.s, by William F. Jolitz
43 *
44 * Substantially rewritten by David Greenman, Rod Grimes,
45 * Bruce Evans, Wolfgang Solfrank, and many others.
46 */
47
48#include "opt_ddb.h"
48#include "assym.s" /* system definitions */
49#include <machine/psl.h> /* processor status longword defs */
50#include <machine/pte.h> /* page table entry definitions */
51#include <sys/errno.h> /* error return codes */
52#include <machine/specialreg.h> /* x86 special registers */
53#include <machine/cputypes.h> /* x86 cpu type definitions */
54#include <sys/syscall.h> /* system call numbers */
55#include <machine/asmacros.h> /* miscellaneous asm macros */

--- 750 unchanged lines hidden ---
49#include "assym.s" /* system definitions */
50#include <machine/psl.h> /* processor status longword defs */
51#include <machine/pte.h> /* page table entry definitions */
52#include <sys/errno.h> /* error return codes */
53#include <machine/specialreg.h> /* x86 special registers */
54#include <machine/cputypes.h> /* x86 cpu type definitions */
55#include <sys/syscall.h> /* system call numbers */
56#include <machine/asmacros.h> /* miscellaneous asm macros */

--- 750 unchanged lines hidden ---