summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/arm/nds/startup/bspreset.c
blob: 88c1661efd66cf995d9248d461bcf3e9124bda43 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/*
 * 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
 */

#include <bsp.h>
#include <bsp/bootcard.h>
#include <nds.h>

void bsp_reset(void)
{
  swiSoftReset();
}