source: rtems/c/src/lib/libbsp/mips/genmongoosev/startup/gdb-support.c @ 3f1c124

4.104.114.84.95
Last change on this file since 3f1c124 was d88661c, checked in by Joel Sherrill <joel.sherrill@…>, on 02/08/02 at 23:05:35

2002-02-08 Joel Sherrill <joel@…>

  • startup/Makefile.am: Now compile the gdb stub.
  • startup/bspstart.c: Fixed header block.
  • startup/gdb-support.c: New file in stub state.
  • Property mode set to 100644
File size: 471 bytes
Line 
1/*
2 *  GDB Support Routines for the Mongoose-V
3 *
4 *  COPYRIGHT (c) 1989-2002.
5 *  On-Line Applications Research Corporation (OAR).
6 *
7 *  The license and distribution terms for this file may be
8 *  found in the file LICENSE in this distribution or at
9 *  http://www.OARcorp.com/rtems/license.html.
10 *
11 *  $Id$
12 */
13
14#include <rtems.h>
15#include <rtems/bspIo.h>
16
17
18char getDebugChar (void)
19{
20  return 0;
21}
22
23void putDebugChar (char c)
24{
25  /* big hack */
26  printk( "%c" );
27}
28
Note: See TracBrowser for help on using the repository browser.