Brandon Donohue / Mbed 2 deprecated IoTBattleship

Dependencies:   mbed

Committer:
bdonohue
Date:
Sat Apr 28 22:07:24 2018 +0000
Revision:
0:912c221cc186
working final ver

Who changed what in which revision?

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