Deleted Added
full compact
x86bios.c (197442) x86bios.c (197444)
1/*-
2 * Written by paradox <ddkprog@yahoo.com>
3 * Public domain.
4 */
5
6#include <sys/cdefs.h>
1/*-
2 * Written by paradox <ddkprog@yahoo.com>
3 * Public domain.
4 */
5
6#include <sys/cdefs.h>
7__FBSDID("$FreeBSD: head/sys/dev/x86bios/x86bios.c 197442 2009-09-23 20:13:36Z jkim $");
7__FBSDID("$FreeBSD: head/sys/compat/x86bios/x86bios.c 197444 2009-09-23 20:49:14Z jkim $");
8
9#include "opt_x86bios.h"
10
11#include <sys/param.h>
12#include <sys/kernel.h>
13#include <sys/lock.h>
14#include <sys/module.h>
15#include <sys/mutex.h>
16
17#include <vm/vm.h>
18#include <vm/pmap.h>
19
20#include <machine/cpufunc.h>
21
22#include <contrib/x86emu/x86emu.h>
23#include <contrib/x86emu/x86emu_regs.h>
8
9#include "opt_x86bios.h"
10
11#include <sys/param.h>
12#include <sys/kernel.h>
13#include <sys/lock.h>
14#include <sys/module.h>
15#include <sys/mutex.h>
16
17#include <vm/vm.h>
18#include <vm/pmap.h>
19
20#include <machine/cpufunc.h>
21
22#include <contrib/x86emu/x86emu.h>
23#include <contrib/x86emu/x86emu_regs.h>
24#include <dev/x86bios/x86bios.h>
24#include <compat/x86bios/x86bios.h>
25
26u_char *pbiosMem = NULL;
27static u_char *pbiosStack = NULL;
28
29int busySegMap[5];
30
31static struct x86emu x86bios_emu;
32

--- 152 unchanged lines hidden ---
25
26u_char *pbiosMem = NULL;
27static u_char *pbiosStack = NULL;
28
29int busySegMap[5];
30
31static struct x86emu x86bios_emu;
32

--- 152 unchanged lines hidden ---