summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/arm/nds/startup/bspreset.c
blob: 85966a7804042776194ef62353f401374bf71907 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/*
 * RTEMS for Nintendo DS platform initialization.
 * Copyright (c) 2008 by Matthieu Bucchianeri <mbucchia@gmail.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>
#include <bsp/bootcard.h>
#include <nds.h>

void bsp_reset(void)
{
  swiSoftReset();
}