/branches/dynload/uspace/lib/rtld/arch/ia32/src/bootstrap.c |
---|
44,14 → 44,14 |
static void kputint(unsigned i) |
{ |
unsigned dummy; |
asm volatile ( |
"movl $32, %%eax;" |
"int $0x30" |
: "=d" (dummy) /* output - %edx clobbered */ |
: "d" (i) /* input */ |
: "%eax","%ecx" /* all scratch registers clobbered */ |
); |
// unsigned dummy; |
// asm volatile ( |
// "movl $32, %%eax;" |
// "int $0x30" |
// : "=d" (dummy) /* output - %edx clobbered */ |
// : "d" (i) /* input */ |
// : "%eax","%ecx" /* all scratch registers clobbered */ |
// ); |
} |
void __bootstrap(pcb_t *pcb) |