* cpu.c, score/cpu.h: Fix headers. Remove extra inline definition.
	* cpu_asm.S: Note origin of Thumb support.
This commit is contained in:
Joel Sherrill
2007-11-26 19:59:17 +00:00
parent f098bf131d
commit a3ff693ec2
4 changed files with 13 additions and 1 deletions

View File

@@ -1,3 +1,8 @@
2007-11-26 Ray Xu <rayx.cn@gmail.com>
* cpu.c, score/cpu.h: Fix headers. Remove extra inline definition.
* cpu_asm.S: Note origin of Thumb support.
2007-11-06 Joel Sherrill <joel.sherrill@OARcorp.com>
* cpu.c: Fix headers.

View File

@@ -8,6 +8,8 @@
* Copyright (c) 2002 Advent Networks, Inc
* Jay Monkman <jmonkman@adventnetworks.com>
*
* Copyright (c) 2007 Ray xu <rayx.cn@gmail.com>
*
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
* http://www.rtems.com/license/LICENSE.

View File

@@ -4,6 +4,9 @@
* This file contains all assembly code for the ARM implementation
* of RTEMS.
*
* Copyright (c) 2007 by Ray Xu, <Rayx.cn@gmail.com>
* Thumb support added.
*
* Copyright (c) 2002 by Advent Networks, Inc.
* Jay Monkman <jmonkman@adventnetworks.com>
*

View File

@@ -8,6 +8,8 @@
* This include file contains information pertaining to the ARM
* processor.
*
* Copyright (c) 2007 Ray Xu <Rayx.cn@gmail.com>
*
* Copyright (c) 2006 OAR Corporation
*
* Copyright (c) 2002 Advent Networks, Inc.
@@ -514,7 +516,7 @@ SCORE_EXTERN Context_Control_fp _CPU_Null_fp_context;
*/
#if (defined(__THUMB_INTERWORK__) || defined(__thumb__))
extern unsigned int _CPU_ISR_Disable_Thumb(void) __attribute__ ((naked));
extern uint32_t _CPU_ISR_Disable_Thumb(void) __attribute__ ((naked));
extern void _CPU_ISR_Enable_Thumb( int ) __attribute__ ((naked));
extern void _CPU_ISR_Flash_Thumb(int) __attribute__ ((naked));
extern void _CPU_ISR_Set_level_Thumb(int ) __attribute__ ((naked));