summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--firmware/export/system.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/firmware/export/system.h b/firmware/export/system.h
index 47dd858..e83ee53 100644
--- a/firmware/export/system.h
+++ b/firmware/export/system.h
@@ -134,6 +134,8 @@ int get_cpu_boost_counter(void);
(size) = __a2 > __a1 ? __a2 - __a1 : 0; \
})
+#define IS_ALIGNED(x, a) (((x) & ((typeof(x))(a) - 1)) == 0)
+
#define PTR_ADD(ptr, x) ((typeof(ptr))((char*)(ptr) + (x)))
#define PTR_SUB(ptr, x) ((typeof(ptr))((char*)(ptr) - (x)))