CMSIS2000
0.0.7
Main Page
Related Pages
Modules
Data Structures
Files
File List
Globals
All
Data Structures
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Macros
Groups
Pages
core_7tdmiInstr.h
Go to the documentation of this file.
1
/*
2
* CMSIS2000
3
* CMSIS-like sources for LPC2xxx series MCUs
4
*
5
* (C) Copyright 2011-2012, Dmitriy Cherepanov, All Rights Reserved
6
*
7
* Version: 0.0.7
8
* Date of the Last Update: 2013-03-04
9
*
10
* Permission is hereby granted, free of charge, to any person obtaining a copy
11
* of this software and associated documentation files (the "Software"), to
12
* deal in the Software without restriction, including without limitation the
13
* rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
14
* sell copies of the Software, and to permit persons to whom the Software is
15
* furnished to do so, subject to the following conditions:
16
*
17
* The above copyright notice and this permission notice shall be included in
18
* all copies or substantial portions of the Software.
19
*
20
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
21
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
22
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
23
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
24
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
25
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
26
* IN THE SOFTWARE.
27
*
28
* Do not be lasy! For the latest version see http://irtos.sourceforge.net .
29
*
30
*
31
#*/
32
#ifndef __CORE_7TDMIINST_H__
33
#define __CORE_7TDMIINST_H__
34
35
/* ########################### Core Function Access ########################### */
36
/** \ingroup CMSIS_Core_FunctionInterface
37
\defgroup CMSIS_Core_RegAccFunctions CMSIS Core Register Access Functions
38
@{
39
*/
40
#if defined ( __CC_ARM )
/*------------------ RealView Compiler ----------------*/
41
/* ARM armcc specific functions */
42
#elif (defined (__ICCARM__))
/*---------------- ICC Compiler ---------------------*/
43
/* IAR iccarm specific functions */
44
45
#if defined (__ICCARM__)
46
#include <intrinsics.h>
/* IAR Intrinsics */
47
#endif
48
49
#elif (defined (__GNUC__))
/*------------------ GNU Compiler ---------------------*/
50
/* GNU gcc specific functions */
51
/** \brief No Operation
52
53
No Operation does nothing. This instruction can be used for code alignment purposes.
54
*/
55
__attribute__( ( always_inline ) ) static __INLINE
void
__NOP(
void
)
56
{
57
__ASM
volatile
(
"nop"
);
58
}
59
60
#elif (defined (__TASKING__))
/*--------------- TASKING Compiler -----------------*/
61
/* TASKING carm specific functions */
62
63
64
65
#endif
66
67
/*@} end of CMSIS_Core_RegAccFunctions */
68
69
70
#endif
/*__CORE_7TDMIINST_H__*/
2000
Include
core_7tdmiInstr.h
Generated on Wed Mar 6 2013 01:06:07 for CMSIS2000 by
1.8.1.2