Reorganized sys functions

This commit is contained in:
2025-02-06 13:46:37 +01:00
parent 170931cf5d
commit 9dcd43be46
15 changed files with 110 additions and 120 deletions

15
lib/sys/net_mac.q Normal file
View File

@ -0,0 +1,15 @@
socket(family Int, type Int, protocol Int) -> Int {
return syscall(0x2000061, family, type, protocol)
}
accept(fd Int, address Pointer, length Int) -> Int {
return syscall(0x200001E, fd, address, length)
}
bind(fd Int, address Pointer, length Int) -> Int {
return syscall(0x2000068, fd, address, length)
}
listen(fd Int, backlog Int) -> Int {
return syscall(0x200006A, fd, backlog)
}