proxmark3/include/common.h

31 lines
827 B
C
Raw Normal View History

2010-07-13 21:39:30 +08:00
//-----------------------------------------------------------------------------
// Hagen Fritsch - June 2010
//
// This code is licensed to you under the terms of the GNU GPL, version 2 or,
// at your option, any later version. See the LICENSE.txt file for the text of
// the license.
//-----------------------------------------------------------------------------
// Interlib Definitions
//-----------------------------------------------------------------------------
#ifndef __COMMON_H
#define __COMMON_H
2012-12-05 07:39:18 +08:00
#include <stddef.h>
#include <stdint.h>
2012-12-05 07:39:18 +08:00
#include <stdbool.h>
#include <at91sam7s512.h>
typedef unsigned char byte_t;
#ifndef MIN
# define MIN(a, b) (((a) < (b)) ? (a) : (b))
#endif
#ifndef MAX
# define MAX(a, b) (((a) > (b)) ? (a) : (b))
#endif
2013-04-08 17:18:39 +08:00
#define RAMFUNC __attribute((long_call, section(".ramfunc")))
2010-07-13 21:39:30 +08:00
#endif