How can i do inline C pure Assembly language? I wanted to do for loop but does not works.
#include <stdio.h>
int main()
{
asm
{
for(int i=0; i<10; i++)
{
// is this how i will do the assembly language as inline C?
// is this how the for loop looks as inline c?
}
} // ?
}
Something similar to,