]>
git.zerfleddert.de Git - proxmark3-svn/blob - include/common.h
ba286377fe356ac33686e4696d0badeb8e6710d0
1 //-----------------------------------------------------------------------------
2 // Hagen Fritsch - June 2010
4 // This code is licensed to you under the terms of the GNU GPL, version 2 or,
5 // at your option, any later version. See the LICENSE.txt file for the text of
8 //-----------------------------------------------------------------------------
9 // Interlib Definitions
10 //-----------------------------------------------------------------------------
18 #include <at91sam7s512.h>
19 typedef unsigned char byte_t
;
21 #define MIN(a, b) (((a) < (b)) ? (a) : (b))
22 #define MAX(a, b) (((a) > (b)) ? (a) : (b))