summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/arm/edb7312/startup/bspreset.c
blob: f18037e2b6079c05d7b10ae2da7fa62c6ef22795 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/*
 *  Copyright (c) 2002 by Jay Monkman <jtm@smoothsmoothie.com>
 *
 *  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 <bsp.h>

void bsp_reset(void)
{
  #if ON_SKYEYE
    /* TBD use Skyeye reset device */
  #else
    asm volatile ("b _start");
  #endif
}