Official mbed Real Time Operating System based on the RTX implementation of the CMSIS-RTOS API open standard.

Dependents:   denki-yohou_b TestY201 Network-RTOS NTPClient_HelloWorld ... more

Deprecated

This is the mbed 2 rtos library. mbed OS 5 integrates the mbed library with mbed-rtos. With this, we have provided thread safety for all mbed APIs. If you'd like to learn about using mbed OS 5, please see the docs.

Committer:
emilmont
Date:
Wed Apr 24 14:45:21 2013 +0000
Revision:
10:fcb1f103f7a1
Add KL25Z support (Cortex-M0+)

Who changed what in which revision?

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