source: rtems/bsps/arm/lm3s69xx/start/bspstarthook.c

Last change on this file was 7427caa, checked in by Sebastian Huber <sebastian.huber@…>, on 12/21/23 at 14:16:47

bsps/arm: Use shared empty bsp_start_hook_0()

Update #4982.

  • Property mode set to 100644
File size: 452 bytes
Line 
1/*
2 * Copyright (c) 2011-2012 Sebastian Huber.  All rights reserved.
3 *
4 * The license and distribution terms for this file may be
5 * found in the file LICENSE in this distribution or at
6 * http://www.rtems.org/license/LICENSE.
7 */
8
9#include <bsp.h>
10#include <bsp/start.h>
11
12void BSP_START_TEXT_SECTION bsp_start_hook_1(void)
13{
14  bsp_start_copy_sections();
15  bsp_start_clear_bss();
16
17  /* At this point we can use objects outside the .start section */
18}
Note: See TracBrowser for help on using the repository browser.