Add support new target: ST Nucleo-L152RE Official mbed Real Time Operating System based on the RTX implementation of the CMSIS-RTOS API open standard.

Fork of mbed-rtos by mbed official

Committer:
emilmont
Date:
Thu May 30 17:08:58 2013 +0100
Revision:
12:58b30ac3f00e
Add LPC4088 target
Fix rtos memory model for GCC toolchains

Who changed what in which revision?

UserRevisionLine numberNew contents of line
emilmont 12:58b30ac3f00e 1 ;/*----------------------------------------------------------------------------
emilmont 12:58b30ac3f00e 2 ; * RL-ARM - RTX
emilmont 12:58b30ac3f00e 3 ; *----------------------------------------------------------------------------
emilmont 12:58b30ac3f00e 4 ; * Name: SVC_TABLE.S
emilmont 12:58b30ac3f00e 5 ; * Purpose: Pre-defined SVC Table for Cortex-M
emilmont 12:58b30ac3f00e 6 ; * Rev.: V4.70
emilmont 12:58b30ac3f00e 7 ; *----------------------------------------------------------------------------
emilmont 12:58b30ac3f00e 8 ; *
emilmont 12:58b30ac3f00e 9 ; * Copyright (c) 1999-2009 KEIL, 2009-2013 ARM Germany GmbH
emilmont 12:58b30ac3f00e 10 ; * All rights reserved.
emilmont 12:58b30ac3f00e 11 ; * Redistribution and use in source and binary forms, with or without
emilmont 12:58b30ac3f00e 12 ; * modification, are permitted provided that the following conditions are met:
emilmont 12:58b30ac3f00e 13 ; * - Redistributions of source code must retain the above copyright
emilmont 12:58b30ac3f00e 14 ; * notice, this list of conditions and the following disclaimer.
emilmont 12:58b30ac3f00e 15 ; * - Redistributions in binary form must reproduce the above copyright
emilmont 12:58b30ac3f00e 16 ; * notice, this list of conditions and the following disclaimer in the
emilmont 12:58b30ac3f00e 17 ; * documentation and/or other materials provided with the distribution.
emilmont 12:58b30ac3f00e 18 ; * - Neither the name of ARM nor the names of its contributors may be used
emilmont 12:58b30ac3f00e 19 ; * to endorse or promote products derived from this software without
emilmont 12:58b30ac3f00e 20 ; * specific prior written permission.
emilmont 12:58b30ac3f00e 21 ; *
emilmont 12:58b30ac3f00e 22 ; * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
emilmont 12:58b30ac3f00e 23 ; * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
emilmont 12:58b30ac3f00e 24 ; * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
emilmont 12:58b30ac3f00e 25 ; * ARE DISCLAIMED. IN NO EVENT SHALL COPYRIGHT HOLDERS AND CONTRIBUTORS BE
emilmont 12:58b30ac3f00e 26 ; * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
emilmont 12:58b30ac3f00e 27 ; * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
emilmont 12:58b30ac3f00e 28 ; * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
emilmont 12:58b30ac3f00e 29 ; * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
emilmont 12:58b30ac3f00e 30 ; * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
emilmont 12:58b30ac3f00e 31 ; * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
emilmont 12:58b30ac3f00e 32 ; * POSSIBILITY OF SUCH DAMAGE.
emilmont 12:58b30ac3f00e 33 ; *---------------------------------------------------------------------------*/
emilmont 12:58b30ac3f00e 34
emilmont 12:58b30ac3f00e 35
emilmont 12:58b30ac3f00e 36 .file "SVC_Table.S"
emilmont 12:58b30ac3f00e 37
emilmont 12:58b30ac3f00e 38
emilmont 12:58b30ac3f00e 39 .section ".svc_table"
emilmont 12:58b30ac3f00e 40
emilmont 12:58b30ac3f00e 41 .global SVC_Table
emilmont 12:58b30ac3f00e 42 SVC_Table:
emilmont 12:58b30ac3f00e 43 /* Insert user SVC functions here. SVC 0 used by RTL Kernel. */
emilmont 12:58b30ac3f00e 44 # .long __SVC_1 /* user SVC function */
emilmont 12:58b30ac3f00e 45 SVC_End:
emilmont 12:58b30ac3f00e 46
emilmont 12:58b30ac3f00e 47 .global SVC_Count
emilmont 12:58b30ac3f00e 48 SVC_Count:
emilmont 12:58b30ac3f00e 49 .long (SVC_End-SVC_Table)/4
emilmont 12:58b30ac3f00e 50
emilmont 12:58b30ac3f00e 51
emilmont 12:58b30ac3f00e 52 .end
emilmont 12:58b30ac3f00e 53
emilmont 12:58b30ac3f00e 54 /*----------------------------------------------------------------------------
emilmont 12:58b30ac3f00e 55 * end of file
emilmont 12:58b30ac3f00e 56 *---------------------------------------------------------------------------*/