Is there a way to incorporate a __asm
instruction into a C expression?
The idea is to somehow substitute b = expression
with __asm(" ":"r" (b))
in
a = b = expression
.
Unfortunately __asm
is not recognized as expression. Is there a way to mimic __asm
as a right-hand expression?