Home

root/library/killtask.s

/* [<][>][^][v][top][bottom][index][help] */
    .include "../include/syscalls.inc"

    .global exit

    .text

exit:
    mov $SYS_EXIT, %r9
    syscall
    ret

/* [<][>][^][v][top][bottom][index][help] */
Home