I want to use DSB instruction with inline assembly in my C code.
With ARM C/C++ Compiler, 4.1 [Build 894], it results in compilation error - instruction not allowed for inline assembly.
__asm("DSB"); is not allowed.
But it is possible to use embedded…