On Mon, 08 Jun 2020 22:35:42 -0000, Christian Weisgerber wrote: > Style question: > Since this mostly comes down to embedding a single special instruction > in between normal C operations, I wonder whether I should just do .c > with asm() instead of .S, and leave all the boilerplate to the > compiler? It would save me from reading up on calling conventions, > more assembly syntax, etc.
I think using inline assembler is fine if it makes things easier. - todd
