source: rtems/cpukit/score/cpu/arm/rtems/score/cpu_asm.h @ 5ce8a0d

4.104.114.95
Last change on this file since 5ce8a0d was 5ce8a0d, checked in by Joel Sherrill <joel.sherrill@…>, on 12/17/07 at 16:12:34

2007-12-17 Joel Sherrill <joel.sherrill@…>

  • rtems/score/cpu_asm.h: Sweep to make sure grep for COPYRIGHT passes.
  • Property mode set to 100644
File size: 753 bytes
Line 
1/**
2 * @file rtems/score/cpu_asm.h
3 */
4
5/*
6 *  $Id$
7 *
8 *  COPYRIGHT (c) 2002 by Advent Networks, Inc.
9 *          Jay Monkman <jmonkman@adventnetworks.com>
10 *
11 *  The license and distribution terms for this file may be
12 *  found in the file LICENSE in this distribution or at
13 *  http://www.rtems.com/license/LICENSE.
14 *
15 *  This file is the include file for cpu_asm.S
16 */
17
18#ifndef _RTEMS_SCORE_CPU_ASM_H
19#define _RTEMS_SCORE_CPU_ASM_H
20
21
22/* Registers saved in context switch: */
23.set REG_CPSR,   0
24.set REG_R4,     4
25.set REG_R5,     8
26.set REG_R6,     12
27.set REG_R7,     16
28.set REG_R8,     20
29.set REG_R9,     24
30.set REG_R10,    28
31.set REG_R11,    32
32.set REG_SP,     36
33.set REG_LR,     40
34.set REG_PC,     44
35.set SIZE_REGS,  REG_PC + 4
36
37#endif
Note: See TracBrowser for help on using the repository browser.