diff --git a/c/src/lib/libbsp/m32r/m32rsim/ChangeLog b/c/src/lib/libbsp/m32r/m32rsim/ChangeLog index 7f69095d18..624b197be9 100644 --- a/c/src/lib/libbsp/m32r/m32rsim/ChangeLog +++ b/c/src/lib/libbsp/m32r/m32rsim/ChangeLog @@ -1,3 +1,7 @@ +2011-01-31 Joel Sherrill + + * startup/bspreset.c: New file. + 2011-01-31 Joel Sherrill * Makefile.am, configure.ac, console/console-io.c, include/bsp.h, diff --git a/c/src/lib/libbsp/m32r/m32rsim/startup/bspreset.c b/c/src/lib/libbsp/m32r/m32rsim/startup/bspreset.c new file mode 100644 index 0000000000..af288998c0 --- /dev/null +++ b/c/src/lib/libbsp/m32r/m32rsim/startup/bspreset.c @@ -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 +#include +#include + +void bsp_reset( void ) +{ + TRAP0(SYS_exit, 0, 0, 0); +}