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.
This commit is contained in:
Joel Sherrill
2002-02-08 23:05:35 +00:00
parent 9099a851f3
commit d88661ccab
4 changed files with 54 additions and 20 deletions

View File

@@ -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" );
}