From ef5d8dcaaf3c4a21c9bca8419a9444be7a371def Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Markus=20Fr=C3=B6schle?= Date: Sat, 21 Dec 2013 16:17:03 +0000 Subject: [PATCH] added NOP() --- BaS_gcc/include/util.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/BaS_gcc/include/util.h b/BaS_gcc/include/util.h index 026cd1d..04d5ad5 100644 --- a/BaS_gcc/include/util.h +++ b/BaS_gcc/include/util.h @@ -27,6 +27,8 @@ #include +#define NOP() __asm__ __volatile__("nop\n\t" : : : "memory") + /* * uint16_t swpw(uint16_t val); * swap endianess of val, 16 bits only.