/ Published in: C
Código en C con Ensamblador para GCC
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
#include <stdio.h> int main(void) { int foo = 10, bar = 15; asm("addl %%ebx,%%eax" :"=a"(foo) :"a"(foo), "b"(bar) ); return 0; }