source: rtems/c/src/lib/libbsp/sparc64/niagara/start/bspinit.S @ ee870077

4.115
Last change on this file since ee870077 was 9d090fb7, checked in by Gedare Bloom <gedare@…>, on 02/23/15 at 20:42:59

sparc64: fix copyright notices.

The sparc64 port had some incorrect copyright notices affixed to
source code files.

  • Property mode set to 100644
File size: 591 bytes
Line 
1/*
2 * bspinit.S
3 *
4 * COPYRIGHT (c) 2010 Gedare Bloom.
5 *
6 * The license and distribution terms for this file may be
7 * found in the file LICENSE in this distribution or at
8 * http://www.rtems.org/license/LICENSE.
9 */
10
11/*
12 *
13 * BSP specific initialization for Sparc64 RTEMS -- sun4v BSP
14 *
15 * This code defines start code specific to the sun4v BSP
16 */
17
18#include <rtems/asm.h>
19#include <rtems/score/cpu.h>
20
21#define STACK_WINDOW_SAVE_AREA_SIZE (16*8)
22
23.section .text
24
25PUBLIC(_BSP_init)
26  .global _BSP_init
27  SYM(_BSP_init):
28
29  save %sp, -STACK_WINDOW_SAVE_AREA_SIZE, %sp 
30
31
32
33  ret
34  restore
35
Note: See TracBrowser for help on using the repository browser.