summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/mips/genmongoosev/startup/gdb-support.c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2002-02-08 23:05:35 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2002-02-08 23:05:35 +0000
commitd88661ccab5e914fc2141ee692719c3817772389 (patch)
treee86fef01c745df407adceafbd724b1f2600c3a5b /c/src/lib/libbsp/mips/genmongoosev/startup/gdb-support.c
parent2002-02-08 Joel Sherrill <joel@OARcorp.com> (diff)
downloadrtems-d88661ccab5e914fc2141ee692719c3817772389.tar.bz2
2002-02-08 Joel Sherrill <joel@OARcorp.com>
* startup/Makefile.am: Now compile the gdb stub. * startup/bspstart.c: Fixed header block. * startup/gdb-support.c: New file in stub state.
Diffstat (limited to '')
-rw-r--r--c/src/lib/libbsp/mips/genmongoosev/startup/gdb-support.c28
1 files changed, 28 insertions, 0 deletions
diff --git a/c/src/lib/libbsp/mips/genmongoosev/startup/gdb-support.c b/c/src/lib/libbsp/mips/genmongoosev/startup/gdb-support.c
new file mode 100644
index 0000000000..b27c0ab99e
--- /dev/null
+++ b/c/src/lib/libbsp/mips/genmongoosev/startup/gdb-support.c
@@ -0,0 +1,28 @@
+/*
+ * GDB Support Routines for the Mongoose-V
+ *
+ * COPYRIGHT (c) 1989-2002.
+ * On-Line Applications Research Corporation (OAR).
+ *
+ * The license and distribution terms for this file may be
+ * found in the file LICENSE in this distribution or at
+ * http://www.OARcorp.com/rtems/license.html.
+ *
+ * $Id$
+ */
+
+#include <rtems.h>
+#include <rtems/bspIo.h>
+
+
+char getDebugChar (void)
+{
+ return 0;
+}
+
+void putDebugChar (char c)
+{
+ /* big hack */
+ printk( "%c" );
+}
+