Added an ASM(foo) macro for cc243x

This commit is contained in:
George Oikonomou 2012-04-03 14:50:13 +01:00
parent 242e02658f
commit 3cb26adeda
1 changed files with 9 additions and 0 deletions

View File

@ -52,6 +52,15 @@ typedef unsigned short clock_time_t;
#define CCIF
#define CLIF
/* Single asm instruction without messing up syntax highlighting */
#if defined(__SDCC_mcs51) || defined(SDCC_mcs51)
#define ASM(x) __asm \
x \
__endasm
#else
#define ASM(x)
#endif
/* Critical section management */
#define DISABLE_INTERRUPTS() do {EA = 0;} while(0)
#define ENABLE_INTERRUPTS() do {EA = 1;} while(0)