#include <stdio.h> void hello(void) { printf("hello, world\n"); } void main(void) { __asm__("cli; call hello"); }