URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [trunk/] [rtems-20020807/] [cpukit/] [score/] [cpu/] [arm/] [rtems/] [score/] [cpu_asm.h] - Rev 1771
Go to most recent revision | Compare with Previous | Blame | View Log
/* * cpu_asm.h,v 1.3 2002/07/30 23:16:40 joel Exp * * Copyright (c) 2002 by Advent Networks, Inc. * Jay Monkman <jmonkman@adventnetworks.com> * * The license and distribution terms for this file may be * found in the file LICENSE in this distribution or at * http://www.OARcorp.com/rtems/license.html. * * This file is the include file for cpu_asm.S * * */ #ifndef __CPU_ASM_h #define __CPU_ASM_h /* Registers saved in context switch: */ .set REG_CPSR, 0 .set REG_R4, 4 .set REG_R5, 8 .set REG_R6, 12 .set REG_R7, 16 .set REG_R8, 20 .set REG_R9, 24 .set REG_R10, 28 .set REG_R11, 32 .set REG_SP, 36 .set REG_LR, 40 .set REG_PC, 44 .set SIZE_REGS, REG_PC + 4 #endif
Go to most recent revision | Compare with Previous | Blame | View Log