Back to home page

LXR

 
 

    


File indexing completed on 2025-05-11 08:22:49

0001 /**
0002  *@file
0003  *
0004  *@ingroup csb337_bits
0005  *
0006  *@brief Contains Defined Bits.
0007  *
0008  */
0009 
0010 /*
0011  * Bit position definitions
0012  *
0013  * Copyright (c) 2002 by Cogent Computer Systems
0014  * Written by Mike Kelly <mike@cogcomp.com>
0015  *
0016  *  The license and distribution terms for this file may be
0017  *  found in the file LICENSE in this distribution or at
0018  *  http://www.rtems.org/license/LICENSE.
0019  */
0020 #ifndef __BITS_H__
0021 #define __BITS_H__
0022 
0023 #define BIT0                0x00000001
0024 #define BIT1                0x00000002
0025 #define BIT2                0x00000004
0026 #define BIT3                0x00000008
0027 #define BIT4                0x00000010
0028 #define BIT5                0x00000020
0029 #define BIT6                0x00000040
0030 #define BIT7                0x00000080
0031 #define BIT8                0x00000100
0032 #define BIT9                0x00000200
0033 #define BIT10               0x00000400
0034 #define BIT11               0x00000800
0035 #define BIT12               0x00001000
0036 #define BIT13               0x00002000
0037 #define BIT14               0x00004000
0038 #define BIT15               0x00008000
0039 #define BIT16               0x00010000
0040 #define BIT17               0x00020000
0041 #define BIT18               0x00040000
0042 #define BIT19               0x00080000
0043 #define BIT20               0x00100000
0044 #define BIT21               0x00200000
0045 #define BIT22               0x00400000
0046 #define BIT23               0x00800000
0047 #define BIT24               0x01000000
0048 #define BIT25               0x02000000
0049 #define BIT26               0x04000000
0050 #define BIT27               0x08000000
0051 #define BIT28               0x10000000
0052 #define BIT29               0x20000000
0053 #define BIT30               0x40000000
0054 #define BIT31               0x80000000
0055 
0056 #endif /* __BITS_H__ */
0057 
0058 /**
0059  *@defgroup csb337_bits Bits
0060  *
0061  *@ingroup RTEMSBSPsARMCSB337
0062  *
0063  *@brief
0064  *
0065  */