#ifndef DEFS_H #define DEFS_H #ifdef STAGE1 #define BLSEC_TEXT __attribute__((section(".stage1.text"))) #define BLSEC_DATA __attribute__((section(".stage1.data"))) #elif STAGE2 #define BLSEC_DATA __attribute__((section(".stage2.data"))) #define BLSEC_DATA __attribute__((section(".stage2.data"))) #else #error "You must define a stage to compile the libraries!" #endif #endif // DEFS_H