source: rtems/bsps/arm/tms570/start/bspstarthooks.c @ 9964895

5
Last change on this file since 9964895 was 9964895, checked in by Sebastian Huber <sebastian.huber@…>, on 04/20/18 at 08:35:35

bsps: Move startup files to bsps

Adjust build support files to new directory layout.

This patch is a part of the BSP source reorganization.

Update #3285.

  • Property mode set to 100644
File size: 885 bytes
Line 
1/**
2 * @file bspstarthooks.c
3 *
4 * @ingroup tms570
5 *
6 * @brief First configurations and initializations to the correct
7 *              functionality of the board.
8 */
9
10/*
11 * Copyright (c) 2014 Premysl Houdek <kom541000@gmail.com>
12 *
13 * Google Summer of Code 2014 at
14 * Czech Technical University in Prague
15 * Zikova 1903/4
16 * 166 36 Praha 6
17 * Czech Republic
18 *
19 * Based on LPC24xx and LPC1768 BSP
20 * by embedded brains GmbH and others
21 *
22 * The license and distribution terms for this file may be
23 * found in the file LICENSE in this distribution or at
24 * http://www.rtems.org/license/LICENSE.
25 */
26
27#include <bsp.h>
28#include <bsp/start.h>
29
30BSP_START_TEXT_SECTION void bsp_start_hook_0( void )
31{
32  ;
33}
34
35BSP_START_TEXT_SECTION void bsp_start_hook_1( void )
36{
37  bsp_start_copy_sections();
38  bsp_start_clear_bss();
39
40  /* At this point we can use objects outside the .start section  */
41}
Note: See TracBrowser for help on using the repository browser.