|
@@ -1,3 +1,21 @@
|
|
1
|
+/*
|
|
2
|
+ * Copyright (C) 2008 Stefan Hajnoczi <stefanha@gmail.com>.
|
|
3
|
+ *
|
|
4
|
+ * This program is free software; you can redistribute it and/or
|
|
5
|
+ * modify it under the terms of the GNU General Public License as
|
|
6
|
+ * published by the Free Software Foundation; either version 2 of the
|
|
7
|
+ * License, or any later version.
|
|
8
|
+ *
|
|
9
|
+ * This program is distributed in the hope that it will be useful, but
|
|
10
|
+ * WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
11
|
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
12
|
+ * General Public License for more details.
|
|
13
|
+ *
|
|
14
|
+ * You should have received a copy of the GNU General Public License
|
|
15
|
+ * along with this program; if not, write to the Free Software
|
|
16
|
+ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
17
|
+ */
|
|
18
|
+
|
1
|
19
|
#include <stddef.h>
|
2
|
20
|
#include <stdio.h>
|
3
|
21
|
#include <assert.h>
|
|
@@ -5,6 +23,12 @@
|
5
|
23
|
#include <gpxe/gdbstub.h>
|
6
|
24
|
#include <gdbmach.h>
|
7
|
25
|
|
|
26
|
+/** @file
|
|
27
|
+ *
|
|
28
|
+ * GDB architecture-specific bits for i386
|
|
29
|
+ *
|
|
30
|
+ */
|
|
31
|
+
|
8
|
32
|
enum {
|
9
|
33
|
DR7_CLEAR = 0x00000400, /* disable hardware breakpoints */
|
10
|
34
|
DR6_CLEAR = 0xffff0ff0, /* clear breakpoint status */
|