Main Page   Modules   Data Structures   File List   Data Fields   Globals   Related Pages   Examples  

parity.h

00001 /* Copyright (c) 2002, Marek Michalkiewicz
00002    All rights reserved.
00003 
00004    Redistribution and use in source and binary forms, with or without
00005    modification, are permitted provided that the following conditions are met:
00006 
00007    * Redistributions of source code must retain the above copyright
00008      notice, this list of conditions and the following disclaimer.
00009    * Redistributions in binary form must reproduce the above copyright
00010      notice, this list of conditions and the following disclaimer in
00011      the documentation and/or other materials provided with the
00012      distribution.
00013 
00014   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
00015   AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
00016   IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
00017   ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
00018   LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
00019   CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
00020   SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
00021   INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
00022   CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
00023   ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
00024   POSSIBILITY OF SUCH DAMAGE. */
00025 
00026 /* avr/parity.h - optimized code to calculate parity bit of a byte */
00027 
00028 #ifndef _AVR_PARITY_H_
00029 #define _AVR_PARITY_H_
00030 
00031 #define parity_even_bit(val) ({                         \
00032         unsigned char __t;                              \
00033         __asm__ (                                       \
00034                 "mov __tmp_reg__,%0" "\n\t"             \
00035                 "swap %0" "\n\t"                        \
00036                 "eor %0,__tmp_reg__" "\n\t"             \
00037                 "mov __tmp_reg__,%0" "\n\t"             \
00038                 "lsr %0" "\n\t"                         \
00039                 "lsr %0" "\n\t"                         \
00040                 "eor %0,__tmp_reg__"                    \
00041                 : "=r" (__t)                            \
00042                 : "0" ((unsigned char)(val))            \
00043                 : "r0"                                  \
00044         );                                              \
00045         (((__t + 1) >> 1) & 1);                         \
00046  })
00047 
00048 #endif /* _AVR_PARITY_H_ */

Generated on Thu Jan 30 22:30:50 2003 for EduNet by doxygen1.2.18