2011-01-31 Joel Sherrill <joel.sherrill@oarcorp.com>

* startup/bspreset.c: New file.
This commit is contained in:
Joel Sherrill
2011-02-01 01:13:10 +00:00
parent 0ef1009aaa
commit 9b677cc920
2 changed files with 23 additions and 0 deletions
+4
View File
@@ -1,3 +1,7 @@
2011-01-31 Joel Sherrill <joel.sherrill@oarcorp.com>
* startup/bspreset.c: New file.
2011-01-31 Joel Sherrill <joel.sherrill@oarcorp.com>
* Makefile.am, configure.ac, console/console-io.c, include/bsp.h,
@@ -0,0 +1,19 @@
/*
* COPYRIGHT (c) 1989-2011.
* 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.rtems.com/license/LICENSE.
*
* $Id$
*/
#include <rtems.h>
#include <bsp/bootcard.h>
#include <bsp.h>
void bsp_reset( void )
{
TRAP0(SYS_exit, 0, 0, 0);
}