Home

root/library/allocsharedmem.s

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

    .global sys_AllocSharedMem

    .text

sys_AllocSharedMem:
    mov $ALLOCSHAREDMEM, %r9
    syscall
    ret

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