Back to home page

LXR

 
 

    


File indexing completed on 2025-05-11 08:23:05

0001 /*
0002  * Copyright (c) 2012 Sebastian Huber.  All rights reserved.
0003  *
0004  * The license and distribution terms for this file may be
0005  * found in the file LICENSE in this distribution or at
0006  * http://www.rtems.org/license/LICENSE.
0007  */
0008 
0009 #include <bsp.h>
0010 #include <bsp/start.h>
0011 
0012 void BSP_START_TEXT_SECTION bsp_start_hook_1(void)
0013 {
0014   bsp_start_copy_sections();
0015   bsp_start_clear_bss();
0016 
0017   /* At this point we can use objects outside the .start section */
0018 }