1/*
2 * System Call
3 */
4
5#include <machine/asm.h>
6
7.text
8
9FUNC_BEGIN(syscall)
10    int $60
11    ret
12FUNC_END(syscall)
13
14