You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
129 B
13 lines
129 B
1 year ago
|
#include <bits/asm/unistd_32.h>
|
||
|
.text
|
||
|
.global __Exit
|
||
|
.type __Exit, @function
|
||
|
|
||
|
|
||
|
.align 2
|
||
|
__Exit:
|
||
|
trapa #__NR_exit
|
||
|
rts
|
||
|
nop
|
||
|
.end
|