Home

root/library/getticks.s

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

    .global sys_GetTicks

    .text

sys_GetTicks:
    mov $GETTICKS, %r9
    syscall
    ret

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