Newer
Older
ubixos / src / lib / libc / sys / exec.c
@reddawg reddawg on 6 Jun 2002 95 bytes Enhancements
void exec(char *file) {
  asm(
    "int %0\n"
    : : "i" (0x80),"a" (3),"b" (file)
    );
  }