summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/arm/lpc24xx/startup/bspreset.c
diff options
context:
space:
mode:
authorThomas Doerfler <Thomas.Doerfler@embedded-brains.de>2009-02-27 12:12:08 +0000
committerThomas Doerfler <Thomas.Doerfler@embedded-brains.de>2009-02-27 12:12:08 +0000
commit949166d6c0436afba8b78420e6ef64a9719b9fca (patch)
treebddb49ca14eee7ead6f97311663185c1f99c1503 /c/src/lib/libbsp/arm/lpc24xx/startup/bspreset.c
parent * README: Added NCS. (diff)
downloadrtems-949166d6c0436afba8b78420e6ef64a9719b9fca.tar.bz2
added missing files
Diffstat (limited to 'c/src/lib/libbsp/arm/lpc24xx/startup/bspreset.c')
-rw-r--r--c/src/lib/libbsp/arm/lpc24xx/startup/bspreset.c27
1 files changed, 27 insertions, 0 deletions
diff --git a/c/src/lib/libbsp/arm/lpc24xx/startup/bspreset.c b/c/src/lib/libbsp/arm/lpc24xx/startup/bspreset.c
new file mode 100644
index 0000000000..1f2ef57b8d
--- /dev/null
+++ b/c/src/lib/libbsp/arm/lpc24xx/startup/bspreset.c
@@ -0,0 +1,27 @@
+/**
+ * @file
+ *
+ * @ingroup lpc24xx
+ *
+ * @brief Reset code.
+ */
+
+/*
+ * Copyright (c) 2008
+ * Embedded Brains GmbH
+ * Obere Lagerstr. 30
+ * D-82178 Puchheim
+ * Germany
+ * rtems@embedded-brains.de
+ *
+ * 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/bootcard.h>
+#include <bsp/start.h>
+
+void bsp_reset( void)
+{
+ start();
+}