This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

Compiler: Assembly conditional compilation for ARM Cortex M4

Tool/software: TI C/C++ Compiler

Hello,

What is to proper syntax in assembly (TI ARM tools) to achieve the same result as:

#if defined(AAA) || defined(BBB)

for single check the following seem to work

.if $$defined(AAA)

but i did not find how to do the OR operation (similar syntax as in C above did not work)

Thanks

Guy