Differences From Artifact [c5f65471b5]:
- File arch/x86.fbsd.32.s — part of check-in [a8d93823f1] at 2019-08-18 13:42:35 on branch trunk — add functions, generate C syscall table (user: lexi, size: 431) [annotate] [blame] [check-ins using]
To Artifact [fb0cced6da]:
- File arch/posix/x86.fbsd.32.s — part of check-in [f85e6a07dd] at 2019-08-20 22:54:49 on branch trunk — reorganize posix assembly code (user: lexi, size: 438) [annotate] [blame] [check-ins using]
- File arch/x86.fbsd.32.s — part of check-in [37b0cfaa06] at 2019-08-18 17:56:41 on branch trunk — revamp arch/ makefile, add generic syscall fn on posix, rewrite kiosend() to use k_platform_syscall instead of k_platform_write (user: lexi, size: 438) [annotate] [blame] [check-ins using]
- File arch/x86.fbsd.32/syscall.s — part of check-in [e42b590b45] at 2019-08-24 23:02:13 on branch trunk — stop attempting to auto-detect system constants during build process, and maintain os/arch-specific tables instead (user: lexi, size: 438) [annotate] [blame] [check-ins using]
1 1 ;; abi definition file for x86 linux 64-bit 2 2 ; vim: ft=nasm 3 3 4 4 ; syscall numbers - syscall table must be created first! 5 -%include "calls.s" 5 +%include "system_calls.s" 6 6 7 7 ; extremely stupid freebsd-ism: expects the syscall to 8 8 ; come from a function 9 9 _syscall: int 0x80 10 10 ret 11 11 12 12 %define sys.call call _syscall