forked from Imagelibrary/rtems
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:
@@ -1,3 +1,9 @@
|
|||||||
|
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.
|
||||||
|
|
||||||
2001-02-01 Greg Menke <gregory.menke@gsfc.nasa.gov>
|
2001-02-01 Greg Menke <gregory.menke@gsfc.nasa.gov>
|
||||||
|
|
||||||
* include/lr33000.h, include/lr330x0.h, include/r3000.h, start/mg5.h:
|
* include/lr33000.h, include/lr330x0.h, include/r3000.h, start/mg5.h:
|
||||||
|
|||||||
@@ -4,12 +4,12 @@
|
|||||||
|
|
||||||
AUTOMAKE_OPTIONS = foreign 1.4
|
AUTOMAKE_OPTIONS = foreign 1.4
|
||||||
|
|
||||||
VPATH = @srcdir@:@srcdir@/../../../shared
|
VPATH = @srcdir@:@srcdir@/../../shared/gdbstub:@srcdir@/../../../shared
|
||||||
|
|
||||||
PGM = $(ARCH)/startup.rel
|
PGM = $(ARCH)/startup.rel
|
||||||
|
|
||||||
C_FILES = bspclean.c bsplibc.c bsppost.c bspstart.c bootcard.c main.c sbrk.c \
|
C_FILES = bspclean.c bsplibc.c bsppost.c bspstart.c bootcard.c main.c sbrk.c \
|
||||||
gnatinstallhandler.c setvec.c
|
gnatinstallhandler.c setvec.c mips-stub.c gdb-support.c
|
||||||
C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.o)
|
C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.o)
|
||||||
|
|
||||||
OBJS = $(C_O_FILES)
|
OBJS = $(C_O_FILES)
|
||||||
|
|||||||
@@ -1,22 +1,22 @@
|
|||||||
/*
|
/*
|
||||||
** This routine starts the application. It includes application,
|
* This routine starts the application. It includes application,
|
||||||
** board, and monitor specific initialization and configuration.
|
* board, and monitor specific initialization and configuration.
|
||||||
** The generic CPU dependent initialization has been performed
|
* The generic CPU dependent initialization has been performed
|
||||||
** before this routine is invoked.
|
* before this routine is invoked.
|
||||||
**
|
*
|
||||||
** COPYRIGHT (c) 1989-2001.
|
* COPYRIGHT (c) 1989-2001.
|
||||||
** On-Line Applications Research Corporation (OAR).
|
* On-Line Applications Research Corporation (OAR).
|
||||||
**
|
*
|
||||||
** The license and distribution terms for this file may be
|
* The license and distribution terms for this file may be
|
||||||
** found in the file LICENSE in this distribution or at
|
* found in the file LICENSE in this distribution or at
|
||||||
** http://www.OARcorp.com/rtems/license.html.
|
* http://www.OARcorp.com/rtems/license.html.
|
||||||
**
|
*
|
||||||
** $Id$
|
* $Id$
|
||||||
**
|
*
|
||||||
** Modification History:
|
* Modification History:
|
||||||
** 12/10/01 A.Ferrer, NASA/GSFC, Code 582
|
* 12/10/01 A.Ferrer, NASA/GSFC, Code 582
|
||||||
** Set interrupt mask to 0xAF00 (Line 139).
|
* Set interrupt mask to 0xAF00 (Line 139).
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
|
||||||
|
|||||||
28
c/src/lib/libbsp/mips/genmongoosev/startup/gdb-support.c
Normal file
28
c/src/lib/libbsp/mips/genmongoosev/startup/gdb-support.c
Normal 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" );
|
||||||
|
}
|
||||||
|
|
||||||
Reference in New Issue
Block a user