Skip to content

Instantly share code, notes, and snippets.

View antoine7878's full-sized avatar

Antoine Le Tellier antoine7878

View GitHub Profile
@antoine7878
antoine7878 / syscall_table_x86.md
Created June 17, 2026 18:51 — forked from GabriOliv/syscall_table_x86.md
Syscall Table x86 Linux for Assembly Programming

Syscall x86 Linux ASM

Extracted from W3Challs Syscalls

# Name eax ebx ecx edx esi edi ebp Definition
0 restart_syscall 0x00 - - - - - - kernel/signal.c:2501
1 exit 0x01 int error_code - - - - - kernel/exit.c:1095
2 fork 0x02 - - - - - - arch/x86/kernel/process.c:271
3 read 0x03 unsigned int fd char *buf size_t count - - - fs/read_write.c:460