test
TARGET_LPC1768/core_caInstr.h@0:c792b17d9f78, 2021-12-03 (annotated)
- Committer:
- juansal12
- Date:
- Fri Dec 03 23:00:34 2021 +0000
- Revision:
- 0:c792b17d9f78
uploaded sofi code ;
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
juansal12 | 0:c792b17d9f78 | 1 | /**************************************************************************//** |
juansal12 | 0:c792b17d9f78 | 2 | * @file core_caInstr.h |
juansal12 | 0:c792b17d9f78 | 3 | * @brief CMSIS Cortex-A9 Core Peripheral Access Layer Header File |
juansal12 | 0:c792b17d9f78 | 4 | * @version |
juansal12 | 0:c792b17d9f78 | 5 | * @date 04. December 2012 |
juansal12 | 0:c792b17d9f78 | 6 | * |
juansal12 | 0:c792b17d9f78 | 7 | * @note |
juansal12 | 0:c792b17d9f78 | 8 | * |
juansal12 | 0:c792b17d9f78 | 9 | ******************************************************************************/ |
juansal12 | 0:c792b17d9f78 | 10 | /* Copyright (c) 2009 - 2012 ARM LIMITED |
juansal12 | 0:c792b17d9f78 | 11 | |
juansal12 | 0:c792b17d9f78 | 12 | All rights reserved. |
juansal12 | 0:c792b17d9f78 | 13 | Redistribution and use in source and binary forms, with or without |
juansal12 | 0:c792b17d9f78 | 14 | modification, are permitted provided that the following conditions are met: |
juansal12 | 0:c792b17d9f78 | 15 | - Redistributions of source code must retain the above copyright |
juansal12 | 0:c792b17d9f78 | 16 | notice, this list of conditions and the following disclaimer. |
juansal12 | 0:c792b17d9f78 | 17 | - Redistributions in binary form must reproduce the above copyright |
juansal12 | 0:c792b17d9f78 | 18 | notice, this list of conditions and the following disclaimer in the |
juansal12 | 0:c792b17d9f78 | 19 | documentation and/or other materials provided with the distribution. |
juansal12 | 0:c792b17d9f78 | 20 | - Neither the name of ARM nor the names of its contributors may be used |
juansal12 | 0:c792b17d9f78 | 21 | to endorse or promote products derived from this software without |
juansal12 | 0:c792b17d9f78 | 22 | specific prior written permission. |
juansal12 | 0:c792b17d9f78 | 23 | * |
juansal12 | 0:c792b17d9f78 | 24 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" |
juansal12 | 0:c792b17d9f78 | 25 | AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
juansal12 | 0:c792b17d9f78 | 26 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
juansal12 | 0:c792b17d9f78 | 27 | ARE DISCLAIMED. IN NO EVENT SHALL COPYRIGHT HOLDERS AND CONTRIBUTORS BE |
juansal12 | 0:c792b17d9f78 | 28 | LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
juansal12 | 0:c792b17d9f78 | 29 | CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
juansal12 | 0:c792b17d9f78 | 30 | SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
juansal12 | 0:c792b17d9f78 | 31 | INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
juansal12 | 0:c792b17d9f78 | 32 | CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
juansal12 | 0:c792b17d9f78 | 33 | ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
juansal12 | 0:c792b17d9f78 | 34 | POSSIBILITY OF SUCH DAMAGE. |
juansal12 | 0:c792b17d9f78 | 35 | ---------------------------------------------------------------------------*/ |
juansal12 | 0:c792b17d9f78 | 36 | |
juansal12 | 0:c792b17d9f78 | 37 | #ifndef __CORE_CAINSTR_H__ |
juansal12 | 0:c792b17d9f78 | 38 | #define __CORE_CAINSTR_H__ |
juansal12 | 0:c792b17d9f78 | 39 | |
juansal12 | 0:c792b17d9f78 | 40 | #define __CORTEX_M 0x3 |
juansal12 | 0:c792b17d9f78 | 41 | #include "core_cmInstr.h" |
juansal12 | 0:c792b17d9f78 | 42 | #undef __CORTEX_M |
juansal12 | 0:c792b17d9f78 | 43 | |
juansal12 | 0:c792b17d9f78 | 44 | #endif |
juansal12 | 0:c792b17d9f78 | 45 |