Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: F7_Ethernet mbed
mbed-rtos/rtx/TARGET_CORTEX_M/TARGET_M0P/TOOLCHAIN_IAR/SVC_Table.S@2:bcf5290d42bf, 2016-06-23 (annotated)
- Committer:
 - DieterGraef
 - Date:
 - Thu Jun 23 09:07:47 2016 +0000
 - Revision:
 - 2:bcf5290d42bf
 - Parent:
 - 0:f9b6112278fe
 
Corrected MAC issue
Who changed what in which revision?
| User | Revision | Line number | New contents of line | 
|---|---|---|---|
| DieterGraef | 0:f9b6112278fe | 1 | ;/*---------------------------------------------------------------------------- | 
| DieterGraef | 0:f9b6112278fe | 2 | ; * CMSIS-RTOS - RTX | 
| DieterGraef | 0:f9b6112278fe | 3 | ; *---------------------------------------------------------------------------- | 
| DieterGraef | 0:f9b6112278fe | 4 | ; * Name: SVC_TABLE.S | 
| DieterGraef | 0:f9b6112278fe | 5 | ; * Purpose: Pre-defined SVC Table for Cortex-M | 
| DieterGraef | 0:f9b6112278fe | 6 | ; * Rev.: V4.70 | 
| DieterGraef | 0:f9b6112278fe | 7 | ; *---------------------------------------------------------------------------- | 
| DieterGraef | 0:f9b6112278fe | 8 | ; * | 
| DieterGraef | 0:f9b6112278fe | 9 | ; * Copyright (c) 1999-2009 KEIL, 2009-2013 ARM Germany GmbH | 
| DieterGraef | 0:f9b6112278fe | 10 | ; * All rights reserved. | 
| DieterGraef | 0:f9b6112278fe | 11 | ; * Redistribution and use in source and binary forms, with or without | 
| DieterGraef | 0:f9b6112278fe | 12 | ; * modification, are permitted provided that the following conditions are met: | 
| DieterGraef | 0:f9b6112278fe | 13 | ; * - Redistributions of source code must retain the above copyright | 
| DieterGraef | 0:f9b6112278fe | 14 | ; * notice, this list of conditions and the following disclaimer. | 
| DieterGraef | 0:f9b6112278fe | 15 | ; * - Redistributions in binary form must reproduce the above copyright | 
| DieterGraef | 0:f9b6112278fe | 16 | ; * notice, this list of conditions and the following disclaimer in the | 
| DieterGraef | 0:f9b6112278fe | 17 | ; * documentation and/or other materials provided with the distribution. | 
| DieterGraef | 0:f9b6112278fe | 18 | ; * - Neither the name of ARM nor the names of its contributors may be used | 
| DieterGraef | 0:f9b6112278fe | 19 | ; * to endorse or promote products derived from this software without | 
| DieterGraef | 0:f9b6112278fe | 20 | ; * specific prior written permission. | 
| DieterGraef | 0:f9b6112278fe | 21 | ; * | 
| DieterGraef | 0:f9b6112278fe | 22 | ; * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" | 
| DieterGraef | 0:f9b6112278fe | 23 | ; * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | 
| DieterGraef | 0:f9b6112278fe | 24 | ; * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | 
| DieterGraef | 0:f9b6112278fe | 25 | ; * ARE DISCLAIMED. IN NO EVENT SHALL COPYRIGHT HOLDERS AND CONTRIBUTORS BE | 
| DieterGraef | 0:f9b6112278fe | 26 | ; * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR | 
| DieterGraef | 0:f9b6112278fe | 27 | ; * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF | 
| DieterGraef | 0:f9b6112278fe | 28 | ; * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS | 
| DieterGraef | 0:f9b6112278fe | 29 | ; * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN | 
| DieterGraef | 0:f9b6112278fe | 30 | ; * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) | 
| DieterGraef | 0:f9b6112278fe | 31 | ; * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE | 
| DieterGraef | 0:f9b6112278fe | 32 | ; * POSSIBILITY OF SUCH DAMAGE. | 
| DieterGraef | 0:f9b6112278fe | 33 | ; *---------------------------------------------------------------------------*/ | 
| DieterGraef | 0:f9b6112278fe | 34 | |
| DieterGraef | 0:f9b6112278fe | 35 | |
| DieterGraef | 0:f9b6112278fe | 36 | NAME SVC_TABLE | 
| DieterGraef | 0:f9b6112278fe | 37 | SECTION .text:CONST (2) | 
| DieterGraef | 0:f9b6112278fe | 38 | |
| DieterGraef | 0:f9b6112278fe | 39 | PUBLIC SVC_Count | 
| DieterGraef | 0:f9b6112278fe | 40 | |
| DieterGraef | 0:f9b6112278fe | 41 | SVC_Cnt EQU (SVC_End-SVC_Table)/4 | 
| DieterGraef | 0:f9b6112278fe | 42 | SVC_Count DCD SVC_Cnt | 
| DieterGraef | 0:f9b6112278fe | 43 | |
| DieterGraef | 0:f9b6112278fe | 44 | ; Import user SVC functions here. | 
| DieterGraef | 0:f9b6112278fe | 45 | ; IMPORT __SVC_1 | 
| DieterGraef | 0:f9b6112278fe | 46 | |
| DieterGraef | 0:f9b6112278fe | 47 | PUBLIC SVC_Table | 
| DieterGraef | 0:f9b6112278fe | 48 | SVC_Table | 
| DieterGraef | 0:f9b6112278fe | 49 | ; Insert user SVC functions here. SVC 0 used by RTL Kernel. | 
| DieterGraef | 0:f9b6112278fe | 50 | ; DCD __SVC_1 ; user SVC function | 
| DieterGraef | 0:f9b6112278fe | 51 | |
| DieterGraef | 0:f9b6112278fe | 52 | SVC_End | 
| DieterGraef | 0:f9b6112278fe | 53 | |
| DieterGraef | 0:f9b6112278fe | 54 | END | 
| DieterGraef | 0:f9b6112278fe | 55 | |
| DieterGraef | 0:f9b6112278fe | 56 | /*---------------------------------------------------------------------------- | 
| DieterGraef | 0:f9b6112278fe | 57 | * end of file | 
| DieterGraef | 0:f9b6112278fe | 58 | *---------------------------------------------------------------------------*/ |