Parent Directory
|
Revision Log
feat: add basic utilities and more system calls
1 | .text |
2 | .globl abort |
3 | .type abort, @function |
4 | |
5 | abort: |
6 | xor %rdi, %rdi |
7 | mov $6, %rsi |
8 | call kill |
9 | mov $1, %rdi |
10 | call exit |
11 | ret |
12 | |
13 | .section .note.GNU-stack,"",@progbits |
[email protected] | ViewVC Help |
Powered by ViewVC 1.1.26 |