]>
git.zerfleddert.de Git - proxmark3-svn/blob - include/common.h
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
;
22 # define MIN(a, b) (((a) < (b)) ? (a) : (b))
25 # define MAX(a, b) (((a) > (b)) ? (a) : (b))
28 # define ABS(a) ( ((a)<0) ? -(a) : (a) )
32 #define RAMFUNC __attribute((long_call, section(".ramfunc")))