source: rtems/c/src/lib/libbsp/arm/gba/startup/bspreset.c @ 72798ee

4.104.115
Last change on this file since 72798ee was 72798ee, checked in by Joel Sherrill <joel.sherrill@…>, on 09/22/08 at 21:53:54

2008-09-22 Joel Sherrill <joel.sherrill@…>

  • startup/bspreset.c: New file.
  • Property mode set to 100644
File size: 308 bytes
Line 
1/*
2 *  The license and distribution terms for this file may be
3 *  found in the file LICENSE in this distribution or at
4 *  http://www.rtems.com/license/LICENSE.
5 *
6 *  $Id$
7 */
8
9#include <bsp.h>
10#include <gba.h>
11
12void bsp_reset(void)
13{
14  asm volatile ("ldr  r0, =_gba_reset");
15  asm volatile ("bx   r0");
16}
Note: See TracBrowser for help on using the repository browser.