summaryrefslogtreecommitdiffstats
path: root/bsps/powerpc/t32mppc/start/bspreset.c
blob: d2e6f9fc51dab7e8acc9015917a3d9f49345ca4d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/*
 * Copyright (c) 2012 embedded brains GmbH.  All rights reserved.
 *
 * The license and distribution terms for this file may be
 * found in the file LICENSE in this distribution or at
 * http://www.rtems.org/license/LICENSE.
 */

#include <stdbool.h>

#include <bsp/bootcard.h>

void bsp_reset(void)
{
  while (true) {
    /* Do nothing */
  }
}