source: rtems/c/src/lib/libbsp/arm/gdbarmsim/startup/bspstarthooks.c @ 4d58458

4.115
Last change on this file since 4d58458 was 4d58458, checked in by Chris Johns <chrisj@…>, on 05/29/14 at 23:11:30

bsps/gdbarmsim: Add the missing bspstarthooks.c.

  • Property mode set to 100644
File size: 449 bytes
Line 
1/*
2 * Copyright (c) 2014 Chris Johns <chrisj@rtems.org>  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#
12BSP_START_TEXT_SECTION void bsp_start_hook_0(void)
13{
14}
15
16BSP_START_TEXT_SECTION void bsp_start_hook_1(void)
17{
18  bsp_start_copy_sections();
19  bsp_start_clear_bss();
20}
Note: See TracBrowser for help on using the repository browser.