]> git.zerfleddert.de Git - proxmark3-svn/blame_incremental - include/common.h
CHG: moved some #define into include\common.h (which is call by apps.h), so we...
[proxmark3-svn] / include / common.h
... / ...
CommitLineData
1//-----------------------------------------------------------------------------
2// Hagen Fritsch - June 2010
3//
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
6// the license.
7
8//-----------------------------------------------------------------------------
9// Interlib Definitions
10//-----------------------------------------------------------------------------
11
12#ifndef __COMMON_H
13#define __COMMON_H
14
15#include <stddef.h>
16#include <stdint.h>
17#include <stdbool.h>
18#include <at91sam7s512.h>
19typedef unsigned char byte_t;
20
21#ifndef MIN
22# define MIN(a, b) (((a) < (b)) ? (a) : (b))
23#endif
24
25#ifndef MAX
26# define MAX(a, b) (((a) > (b)) ? (a) : (b))
27#endif
28
29#ifndef ABS
30# define ABS(a) ( ((a)<0) ? -(a) : (a) )
31#endif
32
33#define RAMFUNC __attribute((long_call, section(".ramfunc")))
34
35#endif
Impressum, Datenschutz