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