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

4.115
Last change on this file since c499856 was c499856, checked in by Chris Johns <chrisj@…>, on 03/20/14 at 21:10:47

Change all references of rtems.com to rtems.org.

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