Inclue macros for BV.
[bertos.git] / bertos / cfg / arch_config.h
index 01ed05d3f6d9a718e7ac5f0d0a3d6effa572f9be..459bbabfd39ffc6c8e2c81f38cadd78fc71c6e53 100644 (file)
  *
  * -->
  *
+ * \brief Set system configuration
+ *
  * \version $Id$
  *
  * \author Bernardo Innocenti <bernie@develer.com>
  *
- * \brief Set system configuration
  */
 
 
 #ifndef ARCH_CONFIG_H
 #define ARCH_CONFIG_H
 
+#include <cfg/macros.h>
+
 /**
  * \name Architectures
  * \{
  */
-#define ARCH_FOO     (1<<0)
-#define ARCH_BAR     (1<<1)
-#define ARCH_EMUL    (1<<8)
+#define ARCH_FOO     BV(0)
+#define ARCH_BAR     BV(1)
+#define ARCH_EMUL    BV(2)
+#define ARCH_PIZZA   BV(3)
+#define ARCH_PROTO   BV(4)
 /*\}*/
 
 #endif /* ARCH_CONFIG_H */