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