Differences From Artifact [ef3e7f83e4]:
- File arch/x86.fbsd.64.s — part of check-in [ec9b2b74b3] at 2019-06-27 22:14:56 on branch trunk — fixes for shared building (user: lexi, size: 214) [annotate] [blame] [check-ins using]
To Artifact [8f1b903740]:
- File arch/posix/x86.fbsd.64.s — part of check-in [f85e6a07dd] at 2019-08-20 22:54:49 on branch trunk — reorganize posix assembly code (user: lexi, size: 209) [annotate] [blame] [check-ins using]
- File arch/x86.fbsd.64.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: 209) [annotate] [blame] [check-ins using]
- File arch/x86.fbsd.64/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: 209) [annotate] [blame] [check-ins using]
1 2 3 4 5 6 7 8 |
;; abi definition file for x86 linux 64-bit
; vim: ft=nasm
; syscall numbers - syscall table must be created first!
%include "calls.x86.fbsd.64.s"
; freebsd uses the common x86-64 ABI
%include "x86.syscall.64.s"
|
| |
1 2 3 4 5 6 7 8 |
;; abi definition file for x86 linux 64-bit
; vim: ft=nasm
; syscall numbers - syscall table must be created first!
%include "system_calls.s"
; freebsd uses the common x86-64 ABI
%include "x86.syscall.64.s"
|