RTEMS
5.2
Toggle main menu visibility
Main Page
Related Pages
Modules
Data Structures
Data Structures
Data Structure Index
Class Hierarchy
Data Fields
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Files
File List
Globals
All
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Functions
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Variables
_
a
b
c
d
e
f
g
i
l
m
n
o
p
r
s
t
v
w
Typedefs
a
b
c
d
e
f
g
h
i
l
m
o
p
q
r
s
t
u
v
w
x
Enumerations
a
b
c
e
h
i
l
m
o
p
q
r
s
t
w
Enumerator
a
c
d
h
i
l
m
p
r
s
t
w
Macros
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
•
All
Data Structures
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Macros
Modules
Pages
bsps
arm
csb337
include
bits.h
Go to the documentation of this file.
1
10
/*
11
* Bit position definitions
12
*
13
* Copyright (c) 2002 by Cogent Computer Systems
14
* Written by Mike Kelly <mike@cogcomp.com>
15
*
16
* The license and distribution terms for this file may be
17
* found in the file LICENSE in this distribution or at
18
* http://www.rtems.org/license/LICENSE.
19
*/
20
#ifndef __BITS_H__
21
#define __BITS_H__
22
23
#define BIT0 0x00000001
24
#define BIT1 0x00000002
25
#define BIT2 0x00000004
26
#define BIT3 0x00000008
27
#define BIT4 0x00000010
28
#define BIT5 0x00000020
29
#define BIT6 0x00000040
30
#define BIT7 0x00000080
31
#define BIT8 0x00000100
32
#define BIT9 0x00000200
33
#define BIT10 0x00000400
34
#define BIT11 0x00000800
35
#define BIT12 0x00001000
36
#define BIT13 0x00002000
37
#define BIT14 0x00004000
38
#define BIT15 0x00008000
39
#define BIT16 0x00010000
40
#define BIT17 0x00020000
41
#define BIT18 0x00040000
42
#define BIT19 0x00080000
43
#define BIT20 0x00100000
44
#define BIT21 0x00200000
45
#define BIT22 0x00400000
46
#define BIT23 0x00800000
47
#define BIT24 0x01000000
48
#define BIT25 0x02000000
49
#define BIT26 0x04000000
50
#define BIT27 0x08000000
51
#define BIT28 0x10000000
52
#define BIT29 0x20000000
53
#define BIT30 0x40000000
54
#define BIT31 0x80000000
55
56
#endif
/* __BITS_H__ */
57
Generated by
1.9.4